/* ____________ last modified: 2024/09/17 17:56:23 ____________ */

* {
    box-sizing: border-box;
}

body {
    overscroll-behavior-y: contain;
}

div#contenido {
    margin-top: 0;
    max-height: calc(100vh - 59px);
    overflow-y: hidden;
    padding: 0;
}

h2 {
    text-align: center;
    margin: 7px 7px 0;
    background-color: white;
    line-height: 45px;
}

span.etiqueta {
    font-size: 20px;
    text-align: left;
    margin: 15px auto 0;
    width: 80%;
    display: block;
}


button.boton {
    width: 80%;
    margin: auto;
    margin-top: 20px;
    display: block;
    height: 40px;
    font-size: 24px;
    color: darkslategrey;
    background-color: aliceblue;
    border: none;
}

button.boton:disabled {
    opacity: 0.7;
}

button.boton.predeterminado {
    color: white;
    /* border: none; */
    background-color: dodgerblue;
}

button.boton.predeterminado:disabled {
    background-color: lightblue;
}