.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .image-container {
    width: 250px;
    height: 250px;
    margin: 10px;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .image-container img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }
  