@charset "utf-8";
/* CSS Document */




image-link-container {
  display: inline-block; /* Needed to correctly size the container */
  overflow: hidden; /* Hides the image if it scales beyond the container */
}

.image-link-container img {
  transition: transform .7s ease; /* Smooth transition for the zoom effect */
  cursor: pointer; /* Shows a pointer to indicate it's clickable */
}

.image-link-container:hover img {
  transform: scale(1.6); /* Scales the image to 120% of its original size on hover */
}
