@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family:'Montserrat', sans-serif;
    background-color: #55819e;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    justify-content: space-between;
   
}

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

nav ul {
    list-style: none;
    padding: 10px;
    margin: 0px;
    background: #55819e;
    display: flex;
    justify-content: center;
  }

  nav li a {
    color: #210c0c;
    display: block;
    text-decoration: none;
    padding: 15px;
  }


h2 {
    color: #343434;
    font-family: sans-serif;
    
}

.usuario {
    margin: 0;
    padding: 0; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 40em;
    height: 20em;
    margin: 1em 1em;
    
}

.contenedor {
   max-width: 50em;
   margin: 0 auto;
 }

.usuario img{
    
    border-radius: 50%;
    height: 50mv;
    width: 50vm;
    max-width: 15em;
    max-height: 15em;
    border: .25em solid grey;
    box-shadow: 0 .35em .5em rgba(0,0,0,35) inset, 0 .35em .5em(0, 0, 0, .35);
     
}
.academico {
    
    padding: 0; 
    display: flex;
    flex-direction:column;
    justify-content:space-around;
    align-items: center;
    text-align: center;
    width: 40em;
    height: 20em;
    margin: 1em 1em;
    list-style: none;
 
}

main {
    background-color: #e0e0cd;
    flex-grow: 1;
    display: flex;
    flex-direction:column;
    justify-content:space-around;
    align-items: center;
    text-align: center;
    
}

p {
    display: flex;
    
 }



#imgLogo {
    width: 10em;
}

   