.WholePage{
    height: 522px;
    width: 100%;
    text-align: center;
 
}

.WholePage h2{
    align-items: center;
    margin-top: 200px;
    z-index: -2;
    position: absolute; 
    padding-left: 350px;
    font-size: 1.8rem;
    font-weight: 400;
}

.WholePage h2 a{
    font-size: 1.8rem;
    font-weight: 400;
}


@media only screen and (max-width: 600px) {

    .WholePage{
        height: 500px;
        width: 100%;
        text-align: center;
     
    }
    
    .WholePage h2{
        align-items: center;
        margin-top: 200px;
        z-index: -2;
        position: absolute; 
        text-align: center;
        align-items: center;
        padding-left: 90px;
        font-size: 1rem;
        font-weight: 400;
    }
    
    .WholePage h2 a{
        font-size: 1rem;
        font-weight: 400;
    }
    
}

.gallery_image {
    column-count: 3;          /* number of columns */
    column-gap: 20px;         /* spacing between columns */
    padding: 100px 30px 30px 30px;
  }
  
  .gallery_image .item {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    break-inside: avoid;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .gallery_image .item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
    object-fit: cover;
  }
  
  /* Hover zoom */
  .gallery_image .item:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  }
  
  /* Different sizes */
  .gallery_image .item.tall img {
    height: 380px;   /* vertical rectangle */
    object-fit: cover;
  }
  
  .gallery_image .item.wide img {
    height: 220px;   /* horizontal rectangle */
    object-fit: cover;
  }
  
  /* Responsive columns */
  @media (max-width: 1200px) {
    .gallery {
      column-count: 3;
    }
  }
  @media (max-width: 768px) {
    .gallery {
      column-count: 2;
    }
  }
  @media (max-width: 480px) {
    .gallery {
      column-count: 1;
    }
  }
  
  