.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__desc {
  text-align: center;
}
.card__desc > h1 {
  font-size: 18px;
}

.galleryLinks {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  margin: 35px;
  gap: 15px;
}
.galleryLinks > .galleryLinkItem {
  flex: 0 1 33%;
}
.galleryLinks > .galleryLinkItem > .cover {
  max-height: 25vh;
  overflow: hidden;
}
.galleryLinks > .galleryLinkItem > .cover > img {
  width: 700px;
  margin: 0 auto;
  display: block;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.galleryLinks > .galleryLinkItem > .title {
  background-color: rgb(30, 30, 30);
  text-align: center;
  display: block;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .galleryLinks {
    align-items: center;
    flex-direction: column;
  }
  .galleryLinks > .galleryLinkItem {
    width: 300px;
  }
}
@media screen and (max-width: 576px) {
  .galleryLinks {
    margin: 15px 0 15px 0;
  }
  .galleryLinks > .galleryLinkItem {
    width: 200px;
  }
}/*# sourceMappingURL=galleryPage.css.map */