.link{
  margin:10px 0;
}


.box{
  animation: animName 2s linear infinite;
 /* 
  background:#0091EA;*/
  width:100px;
  height:100px;
  margin:10px;
  background: url('/sites/default/files/inline-images/foh-logo%203%20%282%29.png') no-repeat fixed center;
  background-color: rgba(0, 0, 255, 0.756);
  padding:5px;
  border-radius: 50%;
}

@keyframes animName {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}