top of page
bottom of page
#floatingShape { border-radius: 50%; /* Makes it a circle */ background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent */ width: 60px; height: 60px; animation: spin 10s linear infinite; /* Continuous spin */ } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }