<style> /* Reset */ * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Segoe UI', Roboto, sans-serif; } .card-container { display: flex; justify-content: center; padding: 30px 15px; } /* Main Card */ .dance-card { position: relative; width: 100%; max-width: 420px; background: #fff; border-radius: 18px; box-shadow: 0 12px 30px rgba(0,0,0,0.15); overflow: hidden; border: 1px solid #ddd; transition: 0.4s ease; } /* Card Content */ .dance-card img { width: 100%; height: auto; display: block; cursor: pointer; filter: brightness(1.05); } .dance-card h3 { text-align: center; font-size: 22px; font-weight: 700; color: #003300; margin: 20px; cursor: pointer; } /* Fake Arms/Legs for Animation */ .arm, .leg { width: 30px; height: 30px; background-color: #66bb66; border-radius: 5...
Comments
Post a Comment