body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}






#about {
    padding: 40px;
    background-color: #f0f0f0;
}
#gallery h2{
    display: inline-block;
    font-size: 2.6rem;
    color: #4d657a;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2rem;
    
  }
.Lheading-border{
    background-color: #ffc600;
    display:block;
    height: .27rem;
    position: relative;
    width: 17%;
    margin: .5rem 0 1.5rem;
  }
#gallery {
    padding: 40px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}

.gallery .image {
    max-width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery .image img {
    width: 100%;
    height: auto;
    display: block;
}
.gallery .image:hover {
    transform: scale(1.1);
}
.gallery .description {
    padding: 10px;
    background-color: #f0f0f0;
    text-align: center;
    font-size: 14px;
}








@media screen and (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    #gallery h2
  {
    font-size: 1.5rem;
    margin: 0rem;


}



}