.container {
  text-align: center;
}

.imagen {
  /*width: 200px; /* ajusta el tamaño de la imagen según tus necesidades */
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-contenido {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.cerrar {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
}