Bouton avec Effet de Secousse .button { margin-top: 20px; padding: 30px 60px; /* Increased padding for a larger button */ border: 1px solid white; border-radius: 25px; background: transparent; color: white; font-size: 2em; /* Increased font size */ text-decoration: none; font-family: 'SF Pro Display', sans-serif; transition: transform 0.2s ease-in-out; /* Transition for the shake effect */ } .button:hover { background: linear-gradient(126deg, #003896 0%, #0CA1E7 100%); transform: scale(1.1); /* Shake effect on hover */ } Next