/* Force everything to have no space */
html, body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    height: 100%;
    width: 100%;
}

/* Ensure all elements inherit the look */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optional: Ensure text links are visible */
a {
    color: #cccccc;
}
a:hover {
    color: #ffffff;
}
.h1 {
    font-family: "Cabinet Grotesk", Sans-serif;
    font-size: 64px;
    font-weight: 700;
}
