
/* Estilos de la galería */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-item {
  flex: 1;
  max-width: calc(33.33% - 20px);
}

.gallery-item a {
  display: block;
  border: 1px solid #ccc;
}

.gallery-item img {
  max-width: 100%;
  height: auto;
}

/* Estilos de la modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  padding: 0.2%;
  margin-top: 5%;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
