.gallery-container {
    width: 90%;
    margin: auto;
    padding: 30px 0px;
}
.gallery {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, auto);
    justify-content: center;
}
.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.gallery img {
    width: 100%;
    border-radius: 5px;
}
.image-name {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    display: none;
}

@media(max-width:800px){
    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }   
}