/*#dd2e2e*/

.preload {
    width: 100%;
    height: 100%;
    background: #333;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgb(32, 32, 33);
}

.logo {
    position: relative;
    width: 300px;
    height: 70px;
    margin: 150px auto 50px auto;
    font-size: 50px;
    text-shadow: -1px 2px 2px #000;
    text-align: center;
    color: azure;
}

.loader-frame {
    width: 70px;
    height: 70px;
    margin: auto;
    position: relative;
}

.loader1 , .loader2 {
    position: absolute;
    border: 5px solid transparent;
    border-radius: 50%;
    
}

.loader1 {
    width: 70px;
    height: 70px;
    border-top: 5px solid azure;
    border-bottom: 5px solid azure;
    animation: clockwisespin 2s linear 3;
}

.loader2 {
    width: 60px;
    height: 60px;
    border-left: 5px solid #34b4ed;
    border-right: 5px solid #34b4ed;
    top: 5px; left: 5px;
    animation: anticlockwisespin 2s linear 3;
}

@keyframes clockwisespin {
    from {transform: rotate(90deg);}
    to {transform: rotate(450deg);}
}

@keyframes anticlockwisespin {
    from {transform: rotate(-90deg);}
    to {transform: rotate(-450deg);}
}

@keyframes fadeout {
    from {opacity: 1;}
    to {opacity: 0;}
}
