body{
    height:150vh;
    margin: 0;
}
header{
    height: 30vh;
    min-height: 6em;
    background-color: rgb(8, 27, 136);
    display:flex;
}
#textoHeader{
    width: 70%;
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    align-items:center;
}
#imgHeader{
    display: flex;
    align-items: center;
}
#imgHeader img{
    max-height:100%;
}
h1, h2, h3{
    margin:0;
    color: antiquewhite;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}
h1{
    font-size: 3em;
}
h3{
    font-size: 1.5em;
}
nav{
    height:50vh;
    background-color: rgb(224, 192, 228);
    display:flex;
    justify-content: space-around;
    align-items: center;
}
button{
    height: max-content;
    padding: 20px;
}
button:hover{
    background-color: blue;
    color:aliceblue;
    font-size: 1em;
}
.enlaces{
    height: 50%;
    width: 25%;   
}
.enlaces:hover{
     background-color: white;
}
section{
    height:40vh;
    background-color:rgb(47, 34, 119);
    text-align: center;
    padding-top:10px;
}
h2{
    font-size: 2em;
}

/* estas propiedades solo se aplican cuando se cumple 
la condición del paréntesis*/
@media(max-width: 600px){ /*cuando el ancho baja de 600px*/
    nav{
        flex-direction: column;
    }
}