.boton-cerrar{
    background-color: #0ef;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #111;
    font-size: 14px;
    padding: 10px 25px;
}

.modal-container {
    display: flex;
    background-color: rgba(0, 0, 0, 0.815);
    align-items: center;
    justify-content: center;
    position: fixed;
    pointer-events: none;
    opacity: 0;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1000;
}

.show {
    pointer-events: auto;
    opacity: 1;
}

.modal {
    background-color: rgb(78, 78, 78);
    color: rgb(226, 225, 225);
    width: 850px;
    max-width: 100%;
    padding: 30px 50px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.modal h1 {
    margin: 0;
    font-size: 40px;
    text-align: center;
}

.modal p {
    opacity: 0.7;
    font-size: 16px;
    text-align: center;
    margin: 20px 0;
}

@media only screen and (max-width: 600px) {
    .modal {
        padding: 10% 20%;
    }

    .modal h1 {
        margin: 0;
        font-size: 20px;
        text-align: center;
    }

    .modal p {
        opacity: 0.7;
        font-size: 11.5px;
        text-align: center;
        margin: 11px 0;
    }
}