.loading{
    display: flex;
    width: 100px;
    height: 100px;
    /* background-color: aqua; */
    margin: auto;
    margin-top: 200px;
    border-radius: 50%;
    border: 10px solid;
    
    animation: loading;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

}
@keyframes loading{
    0%{transform: rotate(0deg);
    box-shadow: 2px 2px 1px rgb(0, 238, 255);}
    50%{transform: rotate(180deg);
    box-shadow: 2px 2px 1px  rgb(23, 159, 136) ;}
    100%{transform: rotate(360deg);
    box-shadow: 2px 2px 1px rgb(40, 169, 186) ;}
}
body{
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: 'open sans', sans-serif;
}