.ventana {
    position: fixed;
    background: rgb(65, 91, 163);
    width: auto;
    color: rgba(255,255,255,1);
    font-size: 18px;
    text-align: center;
    padding: 10px;
    min-height: 250px;
    border-top-right-radius: 30px;
    left: 25%;
    top: 12%;
    display: none;
    z-index: 99999999;
}

#cerrar_ventana {
    position: absolute;
    right: 3px;
    top: 3px;
}
#contenido {
    margin-top: 30px;
    padding-top: 20px;
    padding-left: 60px;
}
@media(max-width:820px){ /* Controlas el tamaño */
    .ventana {
        height: 40%;
        width: 80%;
        left: 7%
    }
    .ventana img {
        width: 80%;
    }
    .ventana #contenido {
        height: 84%;
        width: 100%;
        padding-top: 10px;
        padding-left: 10px;
            font-size:small;
    }
}
@media(max-width:1000px){ /* Controlas el tamaño */
    .ventana {
        height: 80%;
        width: 90%;
        left: 5%
    }
    #contenido {
        height: 84%;
        width: 100%;
        padding-top: 20px;
        padding-left: 65px;
        font-size: medium;
    }
}




