Buttons are one of the most important interactive elements on any website. Styling them properly improves usability and makes your site feel professional.
Hover over the buttons below to see the effects in action:
.button {
background-color: #2e7d52;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
.button:hover {
background-color: #1b5e20;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
:active state for buttons (e.g. transform: scale(0.95);) to provide tactile "press" feedback to the user.