@keyframes turn {
  from { transform: rotate(0deg) }

  to { transform: rotate(360deg) }
}

#blockID{
animation: turn 10s linear infinite;
}