.body1 {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    margin: 0;
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    
    width: 1271px;
  }
  
  .gallery-item {
    display: flex;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  .w100img{
    max-width: 100% !important;
    width: 100%;
  }
  .w3img{
    max-width: 100% !important;
    width: 100%;

  }
  .w6img{
    min-width: 620px !important;
    width: 100%;
  }
  .w7img{
    min-width: 620px !important;
    width: 100%;
  }
  .gallery-item img {
    max-width: 620px;
    display: block;
    width: 620px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(50%);
  }
  
  .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-item:hover .caption {
    opacity: 1;
  }
  

  @media (max-width: 600px) {
    .w6img {
        min-width: 0px !important;
        width: 100%;
    }
}
  