#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(255, 255, 255);
    z-index: 999999999999999999999999999999999999999999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.loader {
    color: white;
    margin-top: 1vw;
    margin-bottom: 0vw;
    text-shadow: 0vw 0vw 0.25vw rgba(255, 255, 255, 0.348);
    animation: loaderAnimation 3.5s infinite ease-in-out;
}

.loader img {
    width: 25vw;
}
