Please Leave Us A Review page .dancer-1 { animation: dance 1s infinite; } .dancer-2 { animation: dance 1s infinite; animation-delay: 0.5s; } @keyframes dance { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }