.gallery img {
  width: 19%;
  max-width:100%;
  height: auto;
  border: 2px solid #333;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.1);
}