.heading{
    margin-top:3%;
    text-align:center;
}
.gallery{
    margin-top:3%;
    margin-bottom:3%;
}

.gallery hr{
    border: 8px solid #8F4343;
}

.galleryContainer{
    margin-top:3%;
    margin-bottom:3%;
    display:flex;
    flex-wrap: wrap;
    gap:20px;
    justify-content: center;
}

.img{
    box-shadow: 1px 4px 8px 0 rgba(0.2, 0.3, 0.3, 0.3);
    width: clamp(250px, 30vw, 330px);
    height: 320px;
    background-color: #dadce2;
    border-radius: 15px;    
    border: 2px solid maroon;
}
.img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}