What to do:
-
Add a transition to a button hover state:
css
.btn { background: #3498db; color: #fff; transition: background 0.3s ease, transform 0.2s; } .btn:hover { background: #217dbb; transform: scale(1.05); }