.gallery-box-container {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery-box {
    height: 300px;
    width: 300px;
}
.gallery-box > img {
    width: 100%;
}

/* Mobile Devices */
@media only screen and (max-width: 600px) {
    .gallery-box {
        height: auto;
        width: 100%;
    }
}

/* Tablets */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* CSS rules for tablets */
    .gallery-box {
        height: auto;
        width: 100%;
    }
}

/* Desktops */
@media only screen and (min-width: 1025px) {
    /* CSS rules for desktops */
}
