.gallery {
  text-align: center;
  max-width: 1610px;
  margin: 1em auto -1em;
}
.gallery img {
  width: 132px;
  height: 132px;
}

.gallery img {
  object-fit: cover;
  border-radius: 0.5em;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
}
.gallery figure {
  width: 132px;
  height: 132px;
}
.gallery figure {
  position: relative;
  margin: 0 0.5em 1em;
  padding: 0;
  display: inline-block;
}
.gallery figcaption {
  display: none;
}
/* Devices that can hover or select using a keyboard */
@media (hover: hover) and (pointer: fine) {
  .gallery img:hover {
    opacity: 0.8;
  }
  }