#container{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ad7476;
}
#loading{
    width: 200px;
    height: 200px;
    position: relative;
    /* background: #fff; */
    border-radius: 50%;
    border-top: 10px solid #ff6b6b;
    animation: animate 2s linear infinite;
}
@keyframes animate{
    to{
        transform: rotate(360deg);
    }
}
#loading::after{
    transform: rotate(120deg);
    border-top: 10px solid #feca57;
}
#loading::before{
    transform: rotate(240deg);
    border-top: 10px solid #48dbfb;
}
#loading::after,
#loading::before{
    content: '';
    top: -10px;
    left: 0;
    width: 200px;
    height: 200px;
    position: absolute;
    /*background: #fff;*/
    border-radius: 50%;
}
#loading span{
    position: absolute;
    width: 200px;
    height: 200px;
    text-align: center;
    line-height: 200px;
    color: #fff;
    animation: a2 2s linear infinite;
}
@keyframes a2{
    to{
        transform: rotate(-360deg);
    }
}