@font-face {
    font-family: "Inter Tight";
    src: url("/fonts/inter-tight-300.woff2") format("woff2");
    font-weight: 300;
}

body {
    margin: 0;
    overflow: hidden;
    background: #000;
    position: fixed;
    width: 100%;
    height: 100%;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Example height */
    background-color: black;
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-family: Inter Tight;
    color: white;
    white-space: nowrap;
    z-index: 2;
}

@media (max-width: 768px) {
    .center-text {
        font-size: 1rem;
    }
}
