.monsterGallery-grid {
    display: grid!important;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 1rem;
}
@media only screen and (max-width: 900px) {
    .monsterGallery-grid {
        grid-template-columns: repeat(3,1fr);
    }
}
@media only screen and (max-width: 675px) {
    .monsterGallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
@media only screen and (max-width: 450px) {
    .monsterGallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
