* {
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
}

header {
    margin: 0;
    padding: .2em 1em;
    background-color: #1A3254;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header img {
    height: 2.8em;
}

header nav {
    display: block;
}

header ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header ul li {
    padding: .5em 1em;
}

header ul li:not(:last-child){
    border-right: .2em solid white;
}

header a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

main {
    max-width: 60em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

main #comitente img {
    width: 100%;
}

main #comitente div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1em 2em;
    color: #1A3254;
}

main #comitente h1 {
    text-transform: uppercase;
    margin: 0;
    padding: .5em .2em;
    border: .1em solid #aaa;
    border-radius: 1em 0em;
}

main #comitente p {
    margin: 0;
    padding: 1em 2em;
    border: .1em solid #aaa;
    border-radius: 0em 1em;
}

main #integrantes {
    display:flex;
    flex-direction: column;
    align-items: center;
    background-color: #e7c597;
    border-radius: 1em;
    margin: 1em;
}

main ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
    margin: 0;
}

main #integrantes ul li {
    margin: 1em;
}

main #integrantes img {
    height: 10em;
    border: .1em solid #1A3254;
    border-radius: 50%;
    box-shadow: .1em .1em .2em #a98763;
}

main #integrantes a {
    text-decoration: none;
    background-color: #1a3254;
    color: white;
    border-radius: .4em;
    padding: .4em;
}

main #datos-academicos {
    margin: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main #datos-academicos div {
    background-color: whitesmoke;
    box-shadow: .2em .2em rgba(170, 170, 170, 0.41);
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    margin: 1em;
    width: 100%;
    max-width: 30em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main #datos-academicos img {
    width: 35vw;
    max-width: 9em;
}

main #redes-sociales {
    margin: 0;
    padding-bottom: 1em;
    display: flex;
    align-items: center;
}

main #redes-sociales img {
    height: 5em;
}

footer {
    padding: 1.25em 2.5em;
    background-color: #1a3254;
    color: white;
}


<!---mediaqueries--->

body {
    
}


@media (min-width:56.25em) {
    main #integrantes ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }
}


<!---Mapa--->


main {
    
}

#mapa {
    margin: 1em;
}

#mapa h1 {
    text-transform: uppercase;
    color: #1A3254;
}

#mapa img {
    width: 100%;
    border-radius: 1em;
    box-shadow: .2em .2em rgba(170, 170, 170, 0.41);
}



<!---Plan--->

main {
    
}

#plan {
    margin: 1em;
}

#plan h1 {
    text-transform: uppercase;
    color: #1A3254;
}

#plan div {
    color: white;
    background-color: #1A3254;
    border-radius: 2em;
    padding: 1em;
    margin: 1em .5em;
}