/* 1. Define la animación */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 2. Aplicar a la clase "imagen" que se quiere rotar */
.spinning-image {
  margin-top: 20%;
  margin-left: 48%;
} 
	
.spinning-image img{
	width: 32px;
	height: 32px;
  animation: spin 6s linear infinite;
}

