#gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 100;
}

#gallery-modal #prev,
#gallery-modal #next {
  position: absolute;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  width: 4.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all;
}
#gallery-modal #prev:hover,
#gallery-modal #next:hover {
  background: rgba(0, 0, 0, 0.4);
}
#gallery-modal #prev img,
#gallery-modal #next img {
  width: 4rem;
  height: 4rem;
  filter: brightness(0) invert(1) drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

#gallery-modal #prev {
  left: 0;
}

#gallery-modal #next {
  right: 0;
}

#gallery-modal #close {
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
}

#modal-content img,
#modal-content video {
  max-width: 90vw;
  max-height: 90vh;
}

/*# sourceMappingURL=gallery.css.map */
