body {
    background-color: #E7D1D2;
    margin: 0;
    padding: 0;
}

header {
    background-color: #8D0E67;
}

main {
    margin: 1em;
    padding: 1em;
}

nav ul {
    margin: 0;
    padding: 0;
    margin-right: 2em;
    background-color: #8D0E67;
    font-family: 'Lato', sans-serif;
    padding: 0.3em;
    list-style: none;
}

nav ul li a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

ul {
    padding: 0;
}

h1 {
    font-family: 'Roboto Slab', serif;
    font-weight: 900;
}

h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3em;
}

h3 {
    font-family: 'Lato', sans-serif;
    background-color: black;
    color: #E7D1D2;
    font-size: 0.9em;
}

p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9em;
}

footer {
    font-family: 'Lato', sans-serif;
    font-style: italic;
    font-size: 0.7em;
    color: white;
    background-color: black;
    padding: 1em;
}

#presentacion {
    border: outset;
    border-color: black;
    padding: 0.3em;
}

.trayectoria{
    margin-bottom: 3em;
}

.app a{
    font-family: "lato", sans-serif;
    text-decoration: none;
    color: #ffffff;
    background-color: #8D0E67;
    padding: 1em;
    margin-right: 2em;
}


/* flex box */

body {
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    max-height: auto;
}

nav ul {
    display: flex;
    flex-direction: row;
    align-content: center; 
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    max-height: auto;
}

.app{
    display: flex;  
}