body{

    background-color:#efefef;
}
header{

    background-color: #364552;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    border-radius: 10px;

}
*{
    font-family: monospace;
}

section article{

    transition: box-shadow 0.3s ease;
    background-color: white;
    border-radius: 10px;
    padding: 5px 0;
    cursor: pointer;
    margin: 2px;

}
section article:hover{

    box-shadow: 0 0.1rem 0.4rem rgba(0, 0,0, 0.3);
}
section article h2, section article p{

    margin: 1rem;
}

#contenedorPadre{

    display: grid;
    background-color: blanchedalmond;
    height: 625px;

    grid-template-areas: " zona1 zona1 zona1"
                         " c1     c2    c3"
                         " c4     c5    c6";

                        grid-template-rows: 80px 270px 270px;
                        grid-template-columns: 450px 450px 450px;

                      
}

#zona1{
    grid-area: zona1;

}
#imagen{

    max-height: 180px;
    max-width: 440px;
}
#c1{
    grid-area: c1;

}
#c2{
    grid-area: c2;
}
#c3{
    grid-area: c3;
}

#c4{
    grid-area: c4;
}
#c5{
    grid-area: c5;
}
#c6{
    grid-area: c6;
    


}

h2{
    text-align: center;
}



