@keyframes spin {
    0%{rotate:0}
    100%{rotate:360deg;}
}

.spin{
    animation: spin 9s linear infinite;
}