#preloader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: wheat;
    z-index: 999;
    width: 100%;
    margin: 0 auto;
}
#preloader.active{
    display: none;
}
#load{
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 20px;
    float: left;
    margin-left: 100px ;
}
#one,#one1,#one2,#one3,#one4{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    float: left;
    position: relative;
    margin: 30px;
}
#one{
    background-color: rgba(186, 127, 50, 0.6);
}
#one1{
    background-color: rgba(186, 127, 50, 0.7);
}
#one2{
    background-color: rgba(186, 127, 50, 0.8);
}
#one3{
    background-color: rgba(186, 127, 50, 0.9);
}
#one4{
    background-color: rgba(186, 127, 50, 1);
}
@keyframes loading{
    from{
        width: 50px;height: 50px;background-color: rgba(3,3,3, 0.3);
    }
    20%{
        width: 200px;height: 200px;background-color: rgba(3,3,3, 0.0001);
    }
    to{
        width: 200px;height: 200px;background-color: rgba(3,3,3, 0.0001);
    }
}
#two,#two1,#two2,#two3,#two4{
    background-color: rgba(3,3,3, 0.3);
    width: 0;
    height: 0;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#two{
    animation: loading 1s linear  infinite;
}
#two1{
    animation: loading 1s linear 0.2s infinite ;
}
#two2{
    animation: loading 1s linear 0.4s infinite ;
}
#two3{
    animation: loading 1s linear 0.6s infinite;
}
#two4{
    animation: loading 1s linear 0.8s infinite;
}
@media all and (max-width:70em){
    #load{
        font-size: 20px;
        font-weight: bold;
        letter-spacing: 10px;
        float: left;
        margin-left: 50px ;
    }
    #one,#one1,#one2,#one3,#one4{
        width: 25px;
        height: 25px;
        border-radius: 50%;
        float: left;
        position: relative;
        margin: 15px;
    }
    @keyframes loading{
        from{
            width: 25px;height: 25px;background-color: rgba(3,3,3, 0.3);
        }
        20%{
            width: 100px;height: 100px;background-color: rgba(3,3,3, 0.0001);
        }
        to{
            width: 100px;height: 100px;background-color: rgba(3,3,3, 0.0001);
        }
    }

}