@keyframes grow-shrink {
    0%, 100% {
        /*zoom in and the out*/
        transform: rotate(360deg);
    }
    50% {
        /*rotate full lap*/
        
        
        
    }
}

.animate-color-change {
    
    animation: grow-shrink 0.5s ease-in-out;
}