@keyframes rotation{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(359deg);
    }
}
#loading-div{
    position:absolute; 
    top:30vh; 
    width:100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    row-gap: 20px;
}
#spining-icon{
    width: 35px; 
    animation: rotation 2s infinite linear;
}