@keyframes spin {
  from {filter: hue-rotate(0);}
  to {filter: hue-rotate(360deg);}
}
canvas{
  animation: spin 5s infinite linear;
}