@charset "utf-8";

/*RESETEADO*/
body{
    margin:0;
    padding:0;
    font-family: sans-serif;
    background-color: seashell;
}
ul, ol {
    list-style: none;
    padding:0;
}
a{
    text-decoration: none;
}

/*REGLAS GENERALES Y PARA CELULARES*/

            /*NAV*/
.navegacion{
    padding-top: 0.5em;
    background-color:#8da1c1;
    height: 3em;
    
    display: flex;
    justify-content:center;
}


.navegacion ul{
    margin:0;
    display: flex;
    
}

.navegacion nav ul li a{
    color:#d9d5d5;
    font-size: 1.2em;
    margin:0.5em;
    font-weight: lighter;
    
    display: flex;
}


            /*COMITENTE*/

h1{
    color:#436396;
    margin-top: 2em;
    margin-bottom: 0;
    text-align: center;
    font-style: oblique;
}

.comitente p{
    margin-left: 1.7em;
    margin-right: 1.7em;
}

            /*EQUIPO*/
section{
    margin-top:3em;
}

h2{
    color:#436396;
    text-align: center;
    font-style: oblique;
}

.equipo img{
    max-width:200px;
    display: block;
    width:100%;
    height:auto;
    margin:auto;
}

.equipo ol{
    display:flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-around;
    
}


            /*PERTENENCIA ACADÉMICA*/
.pertenencia{
    margin-bottom: 3em;
    margin-left:3em;
    margin-right:3em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.datos{
    padding-top: 2em;
    font-size:0.8em;
}

.datos img{
    width:auto;
    height:40px;

}

            /*PIE*/
footer{
    color:#13366d;
    margin-top: 2em;
    margin-left: 2em;
    margin-right: 2em;
    font-size: 0.8em;
    font-weight: bolder;
}

            /*PLAN Y MAPA*/

.plan{
    margin-top:0;
    margin-bottom: 3em;
}

.plan p{
    margin-right:2em;
    margin-left:2em;
}

.protopersona{
    display: flex;
    flex-direction: row;
    justify-content:center;
}

.protopersona img{
    height: auto;
    margin:auto;
    display:block;
    max-width:100%;
    margin-bottom: 2em;
}

.mapa img{
    width: 100%;
    height: auto;
    margin:auto;
    display:block;
    max-width: 100%;
    margin-bottom: 3em;
}


/*Otros dispositivos*/
@media screen and (min-width: 700px){
    .comitente{
        margin-left: 5em;
        margin-right: 5em;
        margin-bottom: 5em;
    }
    
    .equipo{
        margin-left: 3em;
        margin-right: 3em;
        margin-bottom: 4em;
    }

}