#loader{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 20px #fcd581 solid;
    border-top: 20px #d52941 solid;
    animation: loader 1.5s ease-in-out 0s infinite normal ;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes loader{
    from{
        transform: rotate(0deg);
    }
    to{
       transform: rotate(360deg);
    }
}
#loading{
    color: black;
   
}