*{
    box-sizing: border-box;

}
body{
    background-color: hsl(0 0% 95%);
    color: hsl(0, 0%, 15%);
    font-family: sans-serif;
    margin: 0;

}
section{
    padding-block: 1rem;
}
header, footer{
    background-color:hsl(342, 58%, 53%);
    color: hsl(0, 0%, 95%);
}
footer p{
    font-size: 12px;
}
ul{
    list-style: none;
    padding: 0rem;
    /*background-color: hsl(0, 0%, 95%);*/
    
}
a{
    text-decoration:none;
    color: hsl(0, 0%, 15%);
}
h1, h2, h3{
    color: hsl(67, 74%, 39%);

}

.contenedor{
    max-width: 60rem;
    margin-inline: auto;
    padding: 1rem;
}

.contenedor-nav{
    max-width: 60rem;
    margin-inline: auto;
}

/* layout*/
body{
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr;

}
header .contenedor{
    display: flex;
    justify-content:space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: justify;
}

 /* Menu */
header nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
}
header nav ul li{
    margin: .5rem;
}
header nav a{
    background-color: hsl(0, 0%, 15%);
    padding: .5em 1.5em;
    border-radius: 2em;
    color: hsl(0, 0%, 95%);
    font-size: 14px;
    text-align: center;
    width: auto;
    display: inline-block;
}
header nav ul li a:hover{
    background-color: hsl(0, 0%, 95%);
    color: hsl(0, 0%, 15%);
}
header img{
    background-color: hsl(0, 0%, 95%);
    padding: .5rem;
    border-radius: .3rem;
}

/* Sobre mí */

.contenedor-individual{
    display: flex;
    flex-wrap: wrap;
    max-width: 60rem;
    margin: auto;
}
.contenedor-sobremi{
    display: flex;
    align-items: center;
    margin: 0;
    background-color: hsl(0, 0%, 92%);
    padding: 1rem;
    border-radius: 1rem;
}
.contenedor-sobremi img{
    float: left;
    margin-inline-end: 1rem;
    border-radius: 1rem;
    max-width: 10em;
}
.contenedor-sobremi h4{
    margin: .8rem 0;
    color: hsl(67, 74%, 39%);
}
.contenedor-sobremi a img{
    width: 2em;
    border-radius: 0;
}


/* Materias */
.contenedor-materias .contenedor{
    display: grid;
    max-width: 60rem;
    margin: auto;
}
.materias{
    display: grid;
    justify-content: start;
    grid-template-columns: repeat(auto-fit, minmax(min(20rem,100%), 1fr));
    grid-template-rows: auto;
    gap: 1em;   
}
.aprobadas{
    padding: 1rem;
    background-color: hsl(0, 0%, 92%);
    border-radius: 1rem;
}
.en-progreso{
    padding: 1rem;
    background-color: hsl(0, 0%, 92%);
    border-radius: 1rem;
}

/* Equipo */
.contenedor-equipo ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
}
.contenedor-equipo ul li{
    margin: .5rem;
}
.contenedor-equipo a{
    background-color: hsl(342, 58%, 53%);
    color: hsl(0, 0%, 95%);
    padding: .5em 1.5em;
    border-radius: 2em;
    width: auto;
    display: block;
}
.contenedor-equipo a:hover{
    background-color: hsl(0, 0%, 15%);
    color: hsl(0, 0%, 95%);
}

/* Académicos */
.contenedor-academicos .contenedor{
    display: grid;
    margin: auto;
    max-width: 60rem;
}
.datos{
    display: grid;
    justify-content: start;
    grid-template-columns: repeat(auto-fit, minmax(min(10rem,100%), 1fr));
    grid-template-rows: auto;
    gap: 1rem;
}
.datos img{
    height: 3rem;
}
.datos li{
    font-size: 14px;
}
.uba{
    padding: 1rem;
    background-color: hsl(0, 0%, 92%);
    border-radius: 1rem;
}
.fadu{
    padding: 1rem;
    background-color: hsl(0, 0%, 92%);
    border-radius: 1rem;
}
.dgpc{
    padding: 1rem;
    background-color: hsl(0, 0%, 92%);
    border-radius: 1rem;
}




