.gallery {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.gallery__images {
  display: grid;
  gap: 1rem;
}

.gallery__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

@media screen and (min-width: 700px) {
  .gallery__images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1100px) {
  .gallery__images {
    grid-template-columns: repeat(3, 1fr);
  }
}


.body-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}