<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
}

.modal-content {
  border-radius: 8px;
  width: 70vw;
  height: 70vh;
  text-align: center;
  color: black;
  overflow: hidden; /* Para manejar el contenido que excede la altura */
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 768px){
  .modal-content{
    width: 90vw;
    height: 300px;
  }
}</pre></body></html>