#loader-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    z-index: 100000;
    position: fixed;
}

#loader-bg {
    position: fixed;
    height: 200vw;
    width: 200vw;
    background-color: #000000;
    justify-content: center;
    align-items: center;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    transition-property: height, width, border-radius, transform;
    transition-duration: 0.75s;
    transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
    transition-delay: 0s, 0s, 0s, 0.75s;
    border-radius: 0%;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.7);
}

#loader-wrapper img {
    width: 40vh;
}

#loader-wrapper h1 {
    color: #ffffff;
    position: absolute;
    transform: translateY(20vh);
    font-size: 2.5vw;
    letter-spacing: 2px;
}

#loader-wrapper.disappear {
    display: none;
}

        
#loader-bg.loaded {
    animation: fadeOut .5s linear forwards;
} 


@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.loading {
    position: relative;
    width: 200px;
    height: 200px;
    animation: satellite 3s infinite linear;
    border: 3.5px solid #ffffff;
    border-radius: 100%;
}

.loading2 {
    position: fixed;
    width: 100px;
    height: 100px;
    border: 3.5px solid #ffffff;
    border-radius: 100%;
}

.loading:before,
.loading:after {
    position: absolute;
    width: 36px;
    height: 36px;
    content: "";
    border-radius: 100%;
    background-color: #ff5b5b;
    box-shadow: 0 0 20px #ff5b5b;;
    margin: 10px;
}

.loading:after {
    background-color: #1aa6fd;
    box-shadow: 0 0 20px #1aa6fd;;
    right: 0;
    width: 60px;
    height: 60px;
    margin: 40px;
}

@keyframes satellite {
    from {
        transform: rotate(0) translateZ(0);
    }

    to {
        transform: rotate(360deg) translateZ(0);
    }
}