.image {
   animation:spin 4s linear infinite;


@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
}	