#overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 500ms;
    visibility: visible;
    opacity: 1;
    z-index: 1; /* Asegura que el overlay esté encima del pop-up */
}

#popup:target {
    visibility: hidden;
    opacity: 0;
}

#popupBody {
    width: 70%;
    max-width: 600px; /* Se añadió un máximo para asegurar responsividad */
    max-height: 1000px;
min-height: 250px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 5px #000;
    background: #101FDC;
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 5s ease-in-out;
    color: #fff;
}

#cerrar {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

#boton {
    background-color: #0BD8A9;
    transition: background-color 0.5s;
    width: 200px;
    padding: 15px;
    text-align: center; /* Alineación centrada del texto */
    color: #101FDC;
    font-family: 'Roboto', Arial, sans-serif; 
    font-weight: 700;
    font-size: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px #000;
    border: 0;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%); /* Centrar horizontalmente */
    cursor: pointer;
}

#boton:hover {
    background-color: #fff;
}