ul.galleryList {
    margin: 1rem auto;
    max-width: 1200px;

    display: grid;
    list-style: none;
    padding: 0.5em;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5em;
}

@media (900px >= width > 600px) {
    ul.galleryList {
        grid-template-columns: 1fr 1fr;
    }
}

@media (600px >= width) {
    ul.galleryList {
        grid-template-columns: 1fr;
    }
}

ul.galleryList li {
    margin: 1rem auto;
    background: #ffffff66;
    padding: 2rem;
    border-radius: 2rem;
}

ul.galleryList h2 {
    text-align: center;
}

ul.galleryList a.hyperlink {
    color: black;
    text-decoration: none;
}

ul.galleryList img.galleryPreview {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #ffffff66;
    box-shadow: 0 0 12px 12px #ffffff66;
}

ul.galleryList p.flavor {
    font-style: italic;
    color: darkslategray; 
}