#popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  max-width: 80%;
  max-height: 80%;
  overflow: auto;
}

.close {
  position: absolute;
  top: 23px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

/* Media query para pantallas pequeñas (móviles) */
@media (max-width: 768px) {
  .popup-content {
	  width: 90%;
    height: auto;
    padding: 0;
    max-width: 90%;
    max-height: 90%;

  }

  img2 {
	width: 100%;
	height: auto;
  }
}
