.zoom {
  transition: transform .2s; /* Animation */
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.13); /* (113% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}