body {
  font-family: sans-serif;
  margin: 10px;
  text-align: center;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.galeria img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#lightbox img {
  /* max-width: 95%; */
  /* max-height: 85%; */
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
}

.cerrar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 35px;
  color: white;
}
