body {
    font-family: "Archivo", sans-serif;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0px;
}
.cabecera {
    display: flex;
    justify-content: center;
    background: #8AA9C4;
    width: 100%;    
    height: 15%;
}
.navegacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    background: #EAF2F8;
    width: 100%;
    height: 10%;
}
a {
    color: #12163A;
}
.cuerpo {
    display: flex;
    flex: 1;
    width: 100%;
    height: 60%;
}
.seccion-izquierda {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 40%;
    border: 1px solid red;
    gap: 20px;;

}
img{
    width: 650px;
    height: 420
    px;
}
.seccion-derecha {

    border: 1px solid red;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*margin-exterior*/
    /*padding-interior*/
    gap: 10px;
    width: 60%;
}
article {
    background: #EAF2F8;
    border-radius: 4%;
    height: 100%;
    width: 75%;
    padding: 10px;
}
.pie {
    display: flex;
    flex-direction: column;
    align-items: center; /*centrar horizontal*/
    justify-content: center; /*centrar vertical*/
    width: 100%;
    height: 15%;
    background: #8AA9C4;
}
h1 {
    color: #12163A;
}
p{
    
}
