.image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.image-container:hover img {
  transform: scale(1.1);
}