@keyframes hideGallery {
  from {
    max-height: 500px;
  }
  to {
    max-height: 0;
  }
}
@keyframes showGallery {
  from {
    max-height: 0px;
  }
  to {
    max-height: 500px;
  }
}
@keyframes rotateIn {
  from {
    rotate: 0;
  }
  to {
    rotate: 90deg;
  }
}
@keyframes rotateOut {
  from {
    rotate: 90deg;
  }
  to {
    rotate: 0deg;
  }
}
.photo-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 3em;
  margin: 3em 0;
}
.photo-container span {
  font-weight: bold;
}
.photo-container p {
  margin: 1em 0;
}
.photo-container .images {
  margin-top: 3em;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2em;
}
.photo-container img {
  max-width: 100%;
  max-height: 80vh;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=photogallery.css.map */