.card {
  transition: transform .5s; /* Animation */
}

.card:hover {
  transform: scale(0.96); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


.img {
  transition: transform .5s; /* Animation */
  /* border-radius: 25px; */
}

.img:hover {
  transform: scale(0.95); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.column {
  transition: transform .5s; /* Animation */
}

.column:hover {
  transform: scale(0.95); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
