.par{
   
    font-weight: 700;
    font-size: 1.35rem;
    color: white;
    height:50px ;
    border-radius: 50%;

    animation-duration: 4s;
    animation-name: spin;
    animation-timing-function: ease-in-out;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-play-state: running;
}
.par{

}

@keyframes spin{
    0%{

    }
    50%{
        scale: 2;
        transform: rotate(0deg);
        border-radius: 0;


    }
    100%{
        transform: rotate(360deg);
        border-radius: 50%;
        scale: 2;
    }
}