/* First the Grid */
.gallery-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 0.1rem;
  justify-items: center;
  padding: 3.0rem;
}

/* The Picture Frame */
.gallery-frame {
  padding: 1px;
  font-size: 1.0rem;
  font-weight: 300;
  text-align: center;
  background-color: #fff;
  color: #000;
  margin: 5px;
  border: 1px solid #111;
}

figcaption {border-top: 1px solid #111;}
/* The Images */
.gallery-img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.25s ease-in-out;
}
