html {
    overflow-y: hidden;
    font-family: "Reem Kufi Fun", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    color: rgba(215, 215, 215);
    line-height: normal;
}

#p5_loading {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 1);
    width: 100vw;
    height: 100vh;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(215, 215, 215);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: linear 1s infinite rotation;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 1);
    width: 100vw;
    height: 100vh;
    position: absolute;
}

.text {
    font-size: 16px;
    line-height: normal;
    font-family: "Readex Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    margin-top: 2em;
}

@media only screen and (max-width: 1250px) {
    .text {
        width: 50%;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .text {
        width: 80%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .text {
        width: 50%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .text {
        width: 30%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 999px) {
    .text {
        width: 25vw;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .text {
        width: 30vw;
    }
}

.text .r {
    text-align: right;
}
