@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
#gallery {
    background: none;
    gap:1em;
  float: none;
  flex-direction: row;
  flex-wrap: wrap;
}

#gallery article.item {
    padding: 1em;
    background: #fff;
    box-shadow: #333 0 0 1em;
    box-sizing: border-box;
    max-width: 30em;
}

#gallery article.item .details {
    flex-direction: column;
}

#gallery article.item .details>div {
    float: none;
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: unset;
}

#gallery article.item .details h3.caption {
    margin: 0;
    margin-top: 1em;
    padding: 0;
    border: none;
    text-align: center;
    text-transform: none;
    margin-bottom: 0.5em;
}

#gallery article.item .attributes div {
    display: none;
    text-align: justify;
}

#gallery article.item:hover .attributes div {
    display: block;
}