body {
    background-color: #F4622F;
    margin: 0;
    -webkit-animation: pageFadeIn 1s ease-in;
    animation: pageFadeIn 1s ease-in;
    overflow: hidden;
}

@keyframes pageFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes pageBlurIn {
    0% {
        filter: blur(3px);
    }

    100% {
        filter: blur(0);
    }
}

.container {
    width: 100%;
    margin: auto;
}

.main-container {
    width: 100svw;
    margin: auto;
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}
.scroll-the-void h1 {
    font-family: Inter;
    font-weight: 300;
    font-size: 0.9rem;
    color: #FFC9E9;
    /* letter-spacing: 0.3rem; */
    text-align: center;
    animation: pageFadeIn 2.5s ease-in, pageBlurIn 1.5s ease-in;
    cursor: default;
}

.scroll-the-void span {
    display: inline-block;
    padding: 0.6rem 0.3rem;
    transition: filter 0.5s;
    transition: transform 0.5s ease-out;
}

.scroll-the-void-a {
    position: fixed;
    bottom: 2.4rem;

    left: 50%;
    transform: translateX(-50%) translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    white-space: nowrap;
    z-index: 999;
}

.scroll-the-void-a a {
    font-family: Inter;
    font-weight: 300;
    font-size: 0.75rem;
    color: #FFC9E9;
    letter-spacing: 0.3rem;
    white-space: wrap;
    animation: pageFadeIn 2.5s ease-in, pageBlurIn 1.5s ease-in;
    transition: 0.5s;
}


@media(hover: hover) and (pointer: fine) {

    .scroll-the-void-a a:hover{
        filter: blur(1px);
    }

    .scroll-the-void span:hover {
        filter: blur(1px);
        transform: translateX(4px) translateZ(0);
    }
}

#star-void {
    width: 1.4rem;
    cursor: auto;
}

.image-box {
    position: fixed;
    display: flex;
    align-items: center;
    cursor: pointer;
    /* animation: pageBlurIn 1.5s ease-in; */
}

/* MOBILE SCREENS////
///MOBILE SCREENS////
///MOBILE SCREENS////
///MOBILE SCREENS////
///MOBILE SCREENS////
///MOBILE SCREENS////
///MOBILE SCREENS--*/


@media (max-width: 410px) {

    .scroll-the-void h1 {
        font-size: 0.8rem;
    }

    .scroll-the-void span {
        padding: 0.6rem 0.2rem;
    }

    .scroll-the-void-a {
        bottom: 2rem;
    }
}