/* fuentes importadas */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
/* fuentes y configuracion general */
* {
    background-color: #ffda89;
    font-family: 'Titillium Web', sans-serif;     
    font-style: italic;
    font-size: 1.6vmax;
    width: 100vw;
    margin:auto;
    box-sizing: content-box;
}
/* barra superior */
/* diseño del navegador */

.cabecera{
    width:98vw;
    margin:auto;
}
.navegador{
    background-color: #ebf3a0;/* color de fondo */
    display: flex;/* organiza el contenido */
    flex-direction: row;/* distribuye el contenido en línea */
    justify-content: space-between; /* distribuye el espacio sobrante */
    align-items: center;/* alinea verticalmente */
    text-align: center;/* alinea el texto */
    margin: auto;/* margen */
    width: 100%;/* ancho */
    overflow: hidden;
}

/* diseño de título */

.titulo {
    background-color: #ebf3a0;/* color de fondo */
    width: 60%;
    font-size: 4.5vmin;
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
    transition-duration: 1s;
}
/* texto + imagen*/
.presentacion {
    margin: auto;
    margin-top: 5vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: dashed rgb(151, 128, 26);
    border-width: 0.7vmin 0 0.7vmin 0;
    text-align: justify;
    width: 95vw;
}
/* diseño de texto */

.texto {
    margin: 2em;
    width: 60%;
    font-size:1em;
    text-align: left;
}
/* diseño de foto */

.foto {
    width: 40vw;

}
.foto img {
    max-width: 100%;    
    height: auto;
}
/* diseño de footer */

.pie {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    height: 7vh;
    width: 100vw;
    color: #aa87f1;
    background-color: #d0bdf6;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: normal;
}