body {

    height: 930px;
    background-color: antiquewhite;

}

* {
    font-family: monospace;
    font-weight: bold;
    gap: 2px;
}

.contenedorPadre {

    display: grid;
    background-color: white;

    height: 930px;

    grid-template-areas: " head head head head head"
        " menos cantidad mas pantalla respuestas"
        " generar generar generar pantalla respuestas"
        "imprimir imprimir imprimir pantalla respuestas"
        "respuesta respuesta respuesta pantalla respuestas"
        " menuI menuI menuI pantalla respuestas"
        " menuII menuII menuII pantalla respuestas"
        " menuIII menuIII menuIII pantalla respuestas"
        " menuIV menuIV menuIV pantalla respuestas"
        " menuV menuV menuV pantalla respuestas"
        " footer footer footer footer footer";

        grid-template-rows: 9% 6% 6% 6% 6% 9% 9% 9% 9% 24% 7%;
    grid-template-columns: 5% 5% 5% 60% 25%;
    margin: 0px;

}

.titulo {
    grid-area: head;
    background-color: #364552;
    color: white;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    border-radius: 10px;

}

.btnMenos {
    grid-area: menos;
    background: red;
    border: 1px solid black;
    font-size: 19px;
    border-radius: 10px;

}

.lblCantidad {
    grid-area: cantidad;
    background: antiquewhite;
    border: 1px solid black;
    text-align: center;
    line-height: 35px;
    font-size: 19px;
    border-radius: 10px;
    padding: 8px;

}

.btnMas {
    grid-area: mas;
    background: lightgreen;
    border: 1px solid black;
    font-size: 19px;
    border-radius: 10px;

}

.btnGenerar {
    grid-area: generar;
    background: lightgreen;
    border: 1px solid black;
    font-size: 19px;
    border-radius: 10px;

}
.btnImprimir{
    grid-area: imprimir;
    background: lightgreen;
    border: 1px solid black;
    font-size: 19px;
    border-radius: 10px;
}
.btnImprimirRespuestas{
    grid-area: respuesta;
    background: lightgreen;
    border: 1px solid black;
    font-size: 19px;
    border-radius: 10px;
}
.lblPantalla {
    grid-area: pantalla;
    background: rgb(243, 238, 243);
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    overflow-x: hidden;
    font-size: 14px;
    font-weight: bold;
}

.lblRespuestas {
    grid-area: respuestas;
    background: rgb(243, 238, 243);
    border: 1px solid black;
    border-radius: 10px;
    font-size: 14px;
    padding: 10px;
    overflow-x: hidden;
    font-weight: bold;
}

#menu-1 {
    grid-area: menuI;
    background: #364552;
    border: 1px solid black;
    text-align: center;
    line-height: 60px;
    font-size: 15px;
    color: white;
    overflow: scroll;
    overflow-x: hidden;
}

#menu-2 {
    grid-area: menuII;
    background: #364552;
    border: 1px solid black;
    text-align: center;
    line-height: 60px;
    font-size: 15px;
    color: white;
    overflow: scroll;
    overflow-x: hidden;
}

#menu-3 {
    grid-area: menuIII;
    background: #364552;
    border: 1px solid black;
    text-align: center;
    line-height: 60px;
    font-size: 15px;
    color: white;
    overflow: scroll;
    overflow-x: hidden;
}

#menu-4 {
    grid-area: menuIV;
    background: #364552;
    border: 1px solid black;
    text-align: center;
    line-height: 60px;
    font-size: 15px;
    color: white;
    overflow: scroll;
    overflow-x: hidden;
}

.menu-5 {
    grid-area: menuV;

    border: 1px solid black;
    border-radius: 10px;
    text-align: center;
    line-height: 150px;
    font-size: 19px;
}

.footer {
    grid-area: footer;
    background: slateblue;
    border: 1px solid black;
    border-radius: 10px;
    text-align: center;
    line-height: 60px;
    font-size: 10px;
}

.a {
    background-image: url("img/fotoPrimero1.png");
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 240px;
    

}

.b {
    background-image: url("img/fotoSegundo2.png");
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 240px
}

.c {
    background-image: url("img/fotoTercero3.png");
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 240px
}

.d {
    background-image: url("img/fotoCuarto4.png");
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 240px
}

.e {
    background-image: url("img/fotoQuinto5.png");
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 240px
}

.f {
    background-image: url("img/fotoSexto6.png");
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 240px
}


.btnMenos:hover{
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 255, 0.7);
}

.btnMas:hover{
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 255, 0.7);
}

.btnGenerar:hover{
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 255, 0.7);
}
.btnImprimir:hover{
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 255, 0.7)
}
.btnImprimirRespuestas:hover{
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 255, 0.7) ;
}

@media print {
    #menu-1{
        visibility: hidden;
        display: none;
    }
    @page {
        size: auto;
        margin: 0px;
        font-size: 15px;  
        text-align: justify;
        
       }
    #menu-2{
        visibility: hidden;
        display: none;
    }
    #menu-3{
        visibility: hidden;
        display: none;
    }
    #menu-4{
        visibility: hidden;
        display: none;
    }
    #menu-5{
        visibility: hidden;
        display: none;
    }
    #pantalla1{
        visibility: hidden;
        display: none;
    }

    #menos{
        visibility: hidden;
        display: none; 
    }
    #cantidad{
        visibility: hidden;
        display: none; 
    }
    #mas{
        visibility: hidden;
        display: none; 
    }
    #titulo{
        visibility: hidden;
        display: none; 
    }
    #generar{
        visibility: hidden;
        display: none; 
    }
    #imprimir{
        visibility: hidden;
        display: none; 
    }
    #menu-5{
        visibility: hidden;
        display: none; 
    }
    #footer{
        visibility: hidden;
        display: none; 
    }

    #respuesta{
        visibility: hidden;
        display: none; 
    }
    
    
    #pantalla {

 
        visibility: visible;
        overflow: hidden;
        border: hidden;

        height: 930px;
        width: 100%;

    }
}