.loader{
    position: absolute;
    z-index: 100000;
    width: 100%;
    height: 100vh;
    background-color: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .circle{
    width: 8em;
    height: 8em;
    margin: 10px;
    border: 1rem solid #293f61;
    border-top: 1rem solid #5fa3ce;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

.text{
    position: fixed;
    color: #7cd6ed;
    animation: text-changer 700ms alternate infinite ease-in-out;
    font-size: 20px;
}

@keyframes text-changer{
    0%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
}

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