:root {
    --background: #000000;
    --foreground: #ffffff;
    --accent: #959595;
    --context: 1440;
    --context-max: 1920px;
    --context-min: 475px;

}

@media only screen and (max-width: 640px) {
    :root {
        --context: 475;
    }
}

@media only screen and (min-width: 1920px) {
    :root {
        --context: 1920;
    }
}

body {
    color: var(--foreground);
    background: var(--background);
    font-family: 'ABCDiatypeVariable', sans-serif;
    overscroll-behavior: none;
    overflow-y: scroll;
}

::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
    font-size: calc(100vw/var(--context));
}

@font-face {
    font-family: 'AeonikRegular';
    src: url('/fonts/Aeonik\ Pro\ Regular.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AeonikMedium';
    src: url('/fonts/Aeonik\ Pro\ Medium.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wrapper h1 {
    font-family: 'AeonikRegular';
    color: var(--foreground);
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 20rem;
    line-height: 30rem;
    height: 90rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#type-target {
    font-family: 'AeonikRegular';
    color: white;
    white-space: pre-wrap;
    display: inline;
}

#type-target::after {
    content: '|';
    animation: blink 1s step-start infinite;
    display: inline;
    margin-left: 0.3rem;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}



@media only screen and (max-width: 640px) {
    .wrapper h1 {
        font-size: 12rem;
        line-height: 17rem;
    }
}

.logo {
    transform: translateX(5%);
    width: 60%;
    object-fit: contain;
    display: block;
    max-width: 100%;
    height: auto;
}