.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  
  .gallery-item {
    /* margin: 10px; */
    cursor: pointer;
    overflow: hidden;
  }
  
  .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    margin-bottom: 20px;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }