.musicRotate{
   animation: rotateAnimation 2s linear infinite;
   -webkit-animation: rotateAnimation 2s linear infinite;
}
@keyframes rotateAnimation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}
@-webkit-keyframes rotateAnimation {
   from {
     transform: rotate(0deg);
   }
   to {
     transform: rotate(360deg);
   }
}