:root {
    --border_radius: 2px;
}

.gallery {
    display: flex;
    overflow: scroll;

   
    padding-top: 1em;
    padding-bottom: 1em;

    gap: 1em;
}

.gallery_item {
    flex-shrink: 0;

    scroll-snap-align: center;

    background-color: rgb(244, 244, 244);

    text-align: center;
    color: grey;
    font-size: 0.9em;
}

.gallery_item_description {
    /* width: 100%; */
    padding: 0;
    margin: 0;
    padding-top: 0.1em;
    padding-bottom: 0.5em;
}


.gallery div {

}

.gallery img {
    padding: 0;
    margin: 0;
    width: auto;
    border-radius: var(--border_radius);
}
.gallery video, .gallery iframe{
    aspect-ratio: 16/9;
    height: 12em;
}


@media (min-width: 1024px) {
    .gallery img {
        height: 20em;
    }
}

@media (max-width: 1024px) {
    .gallery img {
        height: 16em;
    }
}

@media (max-width: 768px) {
    .gallery img {
        height: 16em;
    }
}

