
.monsterGallery-grid {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    gap: 10px;
}

@media(max-width:768px) {
    .monsterGallery {
        width:95%;
        margin:0 auto;
        display:flex;
        flex-wrap:wrap;
        flex-direction:column;
    }
    .monsterGallery-grid a {
        margin:0;
        padding:0;
    }
    .monsterGallery-grid img {
        max-width:100% !important;
    }
}

/* styling of the galleries page */
.galleries-grid {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    margin-top: 15px;
}

.galleries-grid .galleries-image img {
    max-width: 100%;
    max-height: 400px;
}
