@font-face {
    font-family: "PrimaryDisplay";
    src: url("/fonts/PrimaryText.ttf");
}

@font-face {
    font-family: "DTGotham";
    src: url("/fonts/BodyUltra.otf");
    font-weight: 900;
}

@font-face {
    font-family: "DTGotham";
    src: url("/fonts/BodyBlack.otf");
    font-weight: 800;
}

@font-face {
    font-family: "DTGotham";
    src: url("/fonts/BodyBold.otf");
    font-weight: 600;
}

@font-face {
    font-family: "DTGotham";
    src: url("/fonts/BodyMedium.otf");
    font-weight: 500;
}

@font-face {
    font-family: "DTGotham";
    src: url("/fonts/BodyLight.otf");
    font-weight: 300;
}

@font-face {
    font-family: "DTGotham";
    src: url("/fonts/BodyExtralight.otf");
    font-weight: 200;
}

@font-face {
    font-family: "DTGotham";
    src: url("/fonts/BodyThin.otf");
    font-weight: 100;
}

@font-face {
    font-family: "DTGotham";
    src: url("/fonts/BodyBook.otf");
    font-weight: 400;
}
body {
    background-color: black;
    margin: 0;
    height: 100vh; /* Ensures the body takes full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

* {
    font-family: "DTGotham";
    color: white;
    box-sizing: border-box;
    user-select: none;
}

h1 {
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    text-shadow: black 0 0 15px;
    font-size: clamp(2rem, 5vw, 3rem);
}

h1.timer {
    font-family: "PrimaryDisplay";
    font-size: clamp(3.5rem, 5vw, 7rem);
}

div.mainbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    padding: 20px;
    background: url('/background.png') no-repeat center center;
    background-size: cover; /* Makes it scale to fit 1920x1080 */
    color: white;
    font-size: 2rem; /* Increase size of text/content */
}
