@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to { 
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.logo 
{
    position: absolute;
    -webkit-animation-name:             rotate; 
    -webkit-animation-duration:         0.5s; 
    -webkit-animation-iteration-count:  infinite;
    -webkit-animation-timing-function: linear;
    animation-name:             rotate; 
    animation-duration:         0.5s; 
    animation-iteration-count:  infinite;
    animation-timing-function: linear;
}
