@charset "utf-8";

*{
    font-family: sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #e8e8e8;
    margin:auto;
    min-height: 100vh;
}

/* -------------------------HEADER----------------------------- */
body header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #089b02;
    padding: 0.7em 0.7em 0.7em 0.7em;
    
}

body header nav ul{
    display: flex;
    
}
body header nav ul li{
    display: flex;
    justify-content: space-between;
    padding: 0.5em;
}

body header img {
    display: flex;
    justify-content: space-between;
    width: 5em;
    height: auto
}

body header img {
    width: 5em;
    height: auto
}

body header nav ul li a{
    text-decoration: none;
    color: #e8e8e8;
    background-color: #089b02;
    font-size: 18px;
}

/* -------------------------MAIN----------------------------- */
main {
    display: flex;
    flex-direction: column;

}

section {
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   margin: 1em;
   
}

#usuario{
  margin: auto;
  text-align:center;
  max-width: 25em;
}
#perfil{
    display: flex;
    border-radius: 50%;
    width: 50vw;
    height: 50vw;
    max-width: 15em;
    max-height: 15em;
    border: .25em solid #089b02;
    box-shadow: 0 .25em .3em rgba(170, 170, 170, 0.35) inset, 0 .35em .5em rgba(93, 93, 93, 0.35);
    margin: 1em 0em 0.8em 0em;
}
h1{
    background-color: #089b02;
    padding: 0.2em 0.2em 0.2em 0.2em;
    color: #e8e8e8;
    margin: 0em 0em 0.2em 0em;
    font-family: roboto;
    font-size: 30px;
    box-shadow: 0 .25em .1em rgba(170, 170, 170, 0.35) inset, 0 .35em .5em rgba(93, 93, 93, 0.35);
}

h2{
    background-color: #089b02;
    padding: 0.2em 0em 0.2em 0.3em;
    color: #e8e8e8;
    margin: 0.3em 0em 0.3em 0em;
    border: .15em solid #c4c4c4;
    font-family: roboto;
    font-size: 18px;
}

section ul {
    list-style: none;
    margin: 0.4em 0em 0em 0.9em;
}


.academico {
    font-family: roboto;
    font-style: italic;
    font-size: 12px
}
.logos{
    height: 5em;
    margin: 0.4em 0em 0em 0.9em;
}

#mapa {
    min-height: 100vh;
    min-width: auto;
}





/* -------------------------FOOTER----------------------------- */
footer{
    background-color: #089b02;
    padding: 0.7em 0.7em 0.7em 0.7em;
}

footer p {
    background-color: #089b02;
    padding: 0.7em 0.7em 0.7em 0.7em;
    color: #e8e8e8;
    text-align: center;
    font-size: 0.8em;
    
}