*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.heading{
    margin-top: 25px;
    margin-bottom: 25px;
}
.heading h1{
    font-size: 35px;
    color: gold;
    font-family: 'poppins';
    letter-spacing: 1px;
    font-weight: 700;
    text-align: center;
}
.gallery{
    display: flex;
    flex-direction: row;
    margin-top: 3px;
    margin-left: 3px;
}
.column1{
    width: 30%;
    display: flex;
    flex-direction: column;
    margin-right: 3px;
}
.image{
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 3px;
    filter: grayscale(0);
    transition: all 0.3s;
}
.image img{
    width: 100%;
    height: 100%;
    transform: scale(1);
    
    transition: all 0.3s;
    
}
.img-detail{
    background-color: transparent;
    position: absolute;
    top: 85%;
    left: 5%;
    opacity: 0;
    transition: all 0.3s;
}
.img-detail h2{
    font-size: 19px;
    color: white;
    font-family:  'Raleway', sans-serif;
    letter-spacing: 1px;
}
.image_bw{
    filter: grayscale(1);
}
.image:hover img{
    transform: scale(1.1);
   
}
.image:hover .img-detail{
    opacity: 1;
}
@media(max-width:1024px){
    .img-detail h2{
        font-size: 15px;
    }
}
@media(max-width:768px){
    .heading h1{
        font-size: 30px;
    }
    .img-detail h2{
        font-size: 13px;
    }
}
@media (max-width:630px){
    
    .gallery{
        flex-wrap: wrap;
        justify-content: center;
    }
    .column1{
        width: 80%;
    }
    .img-detail{
        top: 90%;
    }
    .img-detail h2{
        font-size: 18px;
    }
}
@media (max-width:481px){
    .heading h1{
        font-size: 26px;
    }
    .img-detail{
        top: 87%;
    }
    .img-detail h2{
        font-size: 16px;
    }  
}