#gallerWelcome{
    height: 250px;
    width: 100%;
}

#gallerWelcome img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* make a gallery section */
#mainGallery{
    width: 1200px;
    max-width: 100%;
    margin: 80px auto 80px;
    padding: 0 20px;
}

#innerGallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

#innerGallery img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    background: blue;
    border: 2px solid var(--main-color);
}

/* loadmore button */

#loadMore{
    text-align: center;
    margin-bottom: 200px;
}

#loadMoreBtn{
    width: 200px;
    height: 40px;
    color: #333;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    background: var(--main-color);

}

/* make responsive */
@media (max-width: 800px) {
    
    #innerGallery{
        grid-template-columns: repeat(2, 1fr);
    }

    #innerGallery a{
        cursor: default;
    }

}
@media (max-width: 600px) {
    
    #innerGallery{
        grid-template-columns: repeat(1, 1fr);
    }

    #innerGallery img{
        height: 400px;
    }

}