*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container1{
    width: 100%;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 4%;
    
}
.inner_gallery h1{
    color: rgb(117,30,30);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
.inner_gallery{
    width: 90%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin:20px auto ;
    
}
.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-gap: 30px;

}
.gallery img{
    width: 100%;
    border-radius: 5px;
}
.gallery img {
    transition: transform .2s;
}
.gallery img:hover {
    transform: scale(1.05);
}
@media screen and (max-width:768px){
    .inner_gallery h1{
        font-size: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

}


