.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gallery figure {
  max-width: 800px;
  margin: 0;
  text-align: center;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.gallery figcaption {
  font-size: 0.9em;
  color: #ececec;
  margin-top: 4px;
  margin-bottom: 10px;
}
.gallery-title {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}