@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;
  }
}
.gallery-section {
  min-height: 100dvh;
}
.gallery-section .gallery-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3em;
  margin: 3em 0;
}
.gallery-section .gallery-container .gallery-box-img {
  margin-bottom: 1em;
}
.gallery-section .gallery-container .gallery-box-img img {
  max-width: 100%;
  border-radius: 10px;
}
.gallery-section .gallery-container .gallery-box-body a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0f131f;
  font-weight: bold;
  margin-top: 1em;
}
.gallery-section .gallery-container .gallery-box-body a:hover {
  text-decoration: underline;
}

@media (min-width: 700px) {
  .gallery-section .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .gallery-section .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }
}/*# sourceMappingURL=galeria.css.map */