@keyframes rotate {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

.rotate-animation {
  display: inline-block;
  animation: rotate 5s linear infinite;
}

#social-icons svg
{
  transition: fill .2s  
}

#social-icons svg:hover
{
  fill: rgb(229, 0, 64)
}