@Mohamad's answer is on point, but if you want smoother animation and a shorter movement, try that:
.box { transition: all .3s ease-in-out; } .box:hover { transform: translateY(-5px); }