html{
    height: -webkit-fill-available;
}

@charset "utf-8";


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

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

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background-color: linen; 
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    font-family: sans-serif;
}

header {
    box-shadow: 0 0 3px 2px;
    display: flex; 
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: lightseagreen;
    flex-wrap: wrap;
    padding: 1em;
    
}


#logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 18em;
    margin: 1em;
    flex-wrap: wrap;
}

.logofadu {
    width: 10em;
}

.logodgpc {
    width: 5em;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    display: list-item;
}

nav{
    display: flex;
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: center;
    max-width: 40em;
    flex-direction: column;
    padding: .8em;
}

nav ul li {
    max-width: 20em;
    max-height: 7em;
    justify-content: center;
    display: flex;
    margin-bottom: 0.2em;
}

nav ul li a {
    width: 30em;
    height: 2em;
    color: lightseagreen;
    background-color: beige;
    flex-direction: column;
    border-radius: .24rem;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}

ul li a:hover {
    color: beige;
    background-color: lightseagreen;
}

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

h2 {

    margin-bottom: 1em;
    text-align: left;
    color: lightseagreen;
    font-size: 1.5em;
}

h3 {
    color: lightseagreen;
    margin-bottom: 1em;
}
h4{
    margin-bottom: .5em;
}
p{
    margin-bottom: 1em;
}



/*.comitente h2{
    margin: 1em 0 0 0;*/
}

.comitente img {
    width: 100%;
    height: auto;
    justify-content: center;
}

#nombres {
    margin: 0;
    padding: 1em;
    border: solid 3px lightseagreen;
    border-radius: 2em;
    background-color: lightseagreen;
    /*border: 3px;
    border-color: aqua;*/
}

#nombres h2 {
    color: beige;
    text-align: center;
    margin-bottom: 0;
    
}

#nombres nav ul li a {
    width: 15em;
}

#nombres nav ul li a:hover {
    background-color: lightseagreen;
    color: beige;
}

footer {
    background-color: lightseagreen;
    padding: 2em;
    margin: 0;
    color: beige;
}

#mapa {
    margin: 1em;
}

#app ul li a {
    background-color: lightseagreen;
    color: beige;
    width: 15em;
}

#app ul li a:hover {
    background-color: beige;
    color: lightseagreen;
}

/* RESPONSIVE */

@media screen and (min-width:992px) {
    
    header {
        flex-direction: row;
        padding: 0;
    }
    
    #menu {
        flex-direction:row;
        align-items: center;
        justify-content: space-between;
    }
    
    #logos {
        justify-content: space-around;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
        
    nav ul {
        flex-direction: row;
        justify-content: space-around;
        max-width; 100%;
        margin: 0;
        
    }
    
    header nav ul li a {
        width: 5em;
        margin: 1em;
    }
    
    main {
        justify-content: center;
        flex-direction: row;
        /*margin: 0 10em 0 10em;*/
        margin: auto;
        max-width: 40%;
    
     
    }
    
    .comitente h2, .datosacademicos h2 {
        text-align: left;
        padding-top: 1em;
    }
    
    /*.comitente, .datosacademicos, #nombres, #enfoque {
        max-width: 50rem;
        /*margin: 0 auto;
    }*/
    .comitente img {
        height: 50%;
        width: 50%;
    }
    
    .comitente {
        margin-bottom: 1em;
    }
    
    #nombres nav {
        justify-content: space-around;
        
    }
    
    #nombres nav ul {
        flex-direction: column;
    }
    
    #nombres {
        margin: auto;
        margin-bottom: 1em;
        margin-top: 1em;
    
    }
    #app {
        justify-content: space-around;
    }
    
    #app nav ul {
      flex-direction: row;      
        
    }

    #app ul li a{
        width: 10em;
        margin: 1em;
    }
}
    