/* First the Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fil, minmax(200px, 1fr));
  grid-gap: 1.5rem;
  justify-items: center;
  margin: 0;
  padding: 0;
}

/* The Picture Frame */
.gallery-frame {
  padding: .5rem;
  font-size: 1.2rem;
  text-align: center;
  background-color: #333;
  color: #d9d9d9;
}

/* The Images */
.gallery-img {
  
  object-fit: cover;
  transition: opacity 0.25s ease-in-out;
  
}

.gallery-img:hover {
  transform: scale(1.0);
}