.loading-screen {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 300;
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
}

.loading-screen p {
    color: var(--color-black);
}

.char {
    display: inline-block;
    position: absolute;
    opacity: 0;
}

/* @media screen and (max-width: 768px) {
    .loading-screen {
        font-size: 1.5rem;
    }
} */


@media screen and  (max-width: 1024px) {
    .loading-screen {
        font-size: 3rem;
    }
    
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
    .loading-screen {
        font-size: 6rem;
    }
    
}