@charset "utf-8";
    
/* reglas generales */
    
* {
   padding: 0;
   box-sizing: border-box;
}

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

body {
    margin: 0;
    width: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    color: #325d79;  
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

ul,
ol {
    text-decoration: none;
    list-style: none;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 1em;
    text-align: left;
}

h3 {
    font-family: 'Lora', serif;
}

h2 {
    font-size: 2em;
    margin: 0;
}

h3 {
    color: #b9b9b9;
}

header {
    background-color: #325d79;
    margin: 1em;
    margin: auto;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    width: 100%;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 1em;
}

header ul li a {
    color: white;
    width: 100%;
    margin: 0 1em;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

main {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

section#datos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 70%;
    margin: auto;
    margin-top: 10em; 
}

.avatar img {
    border-radius: 50%;
    max-width: 100%;
    height: auto;
}

.info-contenido {
    width: 70%;
}

.apellido {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 700;
    margin: 0;
    margin-bottom: 2em;
    padding: 0;
    color: #b9b9b9;
}

section#info-academica {    
    background-color: #325d79;    
    color: #efeeee;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;  
}

.carrera {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.materias-actuales,
.materias-aprobadas,
.porcentaje {
    margin: 0 2em;
}

footer {
    color: #325d79;
    padding: 3em 3em 1em 3em;
    width: 90%;
    text-align: center;
    margin: auto;
}

/* plan */

section#boceto {
    margin: auto;
}

/* colores en orden #f26627 #f9a26c #efeeee #9bd7d1 #325d79*/