body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#loader{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #576574;
}
#loading{
    width: 120px;
    height: 120px;
    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: 120px;
    height: 120px;
    position: absolute;
    /* background: #fff; */
    border-radius: 50%;
}
#loading span{
    position: absolute;
    width: 120px;
    height: 120px;
    text-align: center;
    line-height: 120px;
    color: #fff;
    animation: a2 2s linear infinite;
}
@keyframes a2 {
    to{
        transform: rotate(-360deg);
    }
}
bar{
    width: 100%;
    background-size: cover;
}
#content{
    display: none;
}
#myDiv{
    display: none;
}