﻿.fullbody {
    margin: 0;
    padding: 0;
    font-family: montserrat;
    background: black;
}



.center {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}



.rings {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: rings 2s linear infinite;
}



@keyframes rings {
    0% {
        transform: rotate(0deg);
        box-shadow: 1px 5px 2px #e65c00;
    }



    50% {
        transform: rotate(180deg);
        box-shadow: 1px 5px 2px #18b201;
    }



    100% {
        transform: rotate(360deg);
        box-shadow: 1px 5px 2px #0456c8;
    }
}



.rings:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255,255,255,.3);
}



.spancs {
    color: #1ae70f;
    font-size: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 200px;
    animation: text 3s ease-in-out infinite;
    /* background-image: url('../img/kd1.png');*/
}

#loaderContainer {
    display: none;
}

/*div#loaderContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;*/
    /*background: rgb(43 77 84);*/
    /*background: linear-gradient(157deg, rgb(255 255 255) 0%, rgb(34 169 129) 100%);
}*/

div#loaderContainer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 9999;
    background: linear-gradient(157deg, #ffffff80 0%, #22a98180 100%);
    backdrop-filter: blur(3px);
}

div#loaderContainer img {
    width: 153px;
}



@keyframes text {
    50% {
        color: #fff;
    }
}
