@keyframes spin {
  0% { transform: rotate(0deg); }
  100% {  transform: rotate(359deg); }
}
.spin {
  animation: spin 2s linear infinite;
}