Hover Effects

CSS allows adding hover effects to elements using the `:hover` pseudo-class.

Snippet:

button:hover { background-color: blue; color: white; }

Example:

div:hover { transform: scale(1.1); transition: 0.3s; }