.galleryContainer {
  display: grid;
}
@media (max-width: 767px) {
  .galleryContainer {
    grid-template-columns: 1fr;
  }
  .galleryContainer img {
    width: 80%;
    height: auto;
    justify-self: center;
  }
}
@media (min-width: 768px) {
  .galleryContainer {
    grid-template-columns: repeat(2, 1fr);
  }
  .galleryContainer img {
    width: 80%;
    max-height: 500px;
    justify-self: center;
  }
}
@media (min-width: 992px) {
  .galleryContainer {
    grid-template-columns: repeat(3, 1fr);
  }
  .galleryContainer img {
    width: 80%;
    max-height: 500px;
    justify-self: center;
  }
}

.sunset {
  background-image: url("../images/locations/redSunset.jpg");
  /* background-repeat: no-repeat; */
}

/* .inter-mainBody {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
} */

/* .gallery {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.gallery-item {
  max-width: 100%;
  height: auto;
} */

/* .doWrap {
  white-space: wrap;
} */
