.loading-screen {
    position: fixed;
    z-index: 1;
    background: linear-gradient(90deg, hsl(354, 10%, 50%), hsl(32, 10%, 50%), hsl(60, 10%, 50%), hsl(133, 10%, 50%), hsl(206, 10%, 50%));
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s ease;
    transition-property: opacity, visibility;
}

.loading-screen img {
    width: 50vmin;
    transform: scale(0.7);
    transition: 0.3s ease;
}

.loading-screen p {
    transform: scale(0.7);
    font-weight: 500;
    letter-spacing: 0.15rem;
    font-size: 6rem;
    background: linear-gradient(90deg, hsl(354, 100%, 75%), hsl(32, 100%, 75%), hsl(60, 100%, 75%), hsl(133, 100%, 75%), hsl(206, 100%, 75%));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    transition: 0.3s ease;
}

@media screen and (max-width: 650px) {
    .loading-screen p {
        font-size: 4rem;
    }
}

@media screen and (max-width: 430px) {
    .loading-screen p {
        font-size: 3rem;
    }
}

@media screen and (max-width: 330px) {
    .loading-screen p {
        font-size: 2rem;
    }
}

.loading-screen.shown {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.loading-screen.shown img {
    transform: scale(1);
    user-select: none;
}

.loading-screen.shown p {
    transform: scale(1);
    user-select: none;
}