figcaption {
    color: black;
}
.aviary-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.aviary-gallery > a {
    display: flex;
    justify-content: center;
}

@media (max-width: 600px) {
    .aviary-gallery {
        grid-template-columns: 1fr;
    }
}