.gallery__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.gallery__items > * {
  width: 10cm;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin: 1em;
}
.gallery__items img {
  width: 10cm;
  margin: 0;
  max-width: 100%;
  height: unset;
  border-radius: 4pt;
  flex-grow: 0;
  transition: transform 0.5s 0s var(--curve-circular);
}
.gallery__items img:hover {
  transform: scale(1.2);
}
.gallery__items p {
  margin: 1em 0.5em;
  text-align: center;
  white-space: pre-wrap;
}
