@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

/* configuracion general */
body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    color: #0f3f3c;
    background-color: white;
}

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

h1,
h2,
h3 {
    line-height: 1.1;
}

h2 {
    font-size: 25px;
    margin: 0px 30px;
    padding: 0.50rem;
    border-radius: 0.50rem;
    text-align: center;
    outline: 3px solid
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}

ul {
    list-style: none;
    padding: 0;
}

header, 
footer {
    background-color: #f2b5d4;
    color: white;
}

/* componente superior y sus contenidos */
header .contenedora {
    max-width: 75rem;
    margin-inline: auto;
    padding: 3rem;
}

#logo a {
    text-transform: uppercase;
    font-size: 30px;
    color: white;
    outline: 4px solid;
    border-radius: 50px;
    padding: 20px 40px;
}

#logo a:hover { 
    color: #ed137d;
}


header nav ul {
    margin-block: 0;
}

header nav a {
    color: #ffffff;
    background-color: #ed137d;
    display: block;
    width: 5em;
    padding-block: 0.25em .5em;
    border-radius: 50px;
    text-align: center;
}

header nav a:hover, header nav a:focus-visible {
    background-color: #ffffff;
    color: #ed137d;
    outline: none;
}

header .contenedora {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

header .menu {
    display: flex;
    gap: .50rem;
}




/* presentacion */
.avatar_agus {
    width: 15em;
    border-radius: 50%;
    outline: 4px solid;
}

.mi_info {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    justify-items: center;
    padding: 3rem;
    max-width: 75rem;
    margin-inline: auto;
}


/* informacion general */
.informacion {
    margin-top: 60px;
    margin-bottom: 30px;
}

.informacion article {
    background-color: #f2b5d4;
    padding: 2em;
    border-radius: 1em
}

/* recorrido academico */
.materias_articulos {
    display: flex;
    gap: 1rem;
    margin: 30px 27px;
    justify-content: center;
}

.materias_articulos li:before { 
    content: '\2765'; 
    margin-left: 0px; 
    margin-right: 10px; 
}

/* equipo VM31 */
.equipo_articulos {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 30px 27px;
}

/* rotulos de equipo */
.equipo_articulos img {
    width: 8em;
    border-radius: 100px;
    outline: 4px solid;
}

.equipo_articulos a {
    color: #ffffff;
    background-color: #ed137d;
    display: block;
    width: 5em;
    padding-block: 0.25em .5em;
    border-radius: 50px;
    text-align: center;
}

.equipo_articulos a:hover {
    background-color: #ffffff;
    color: #ed137d;
    outline: none;
}

/* datos academicos */
.academicos article {
    outline: 4px solid #f2b5d4;
    border-radius: 25px;
    justify-content: center;
    padding: 1.5rem;
} 

.datos_articulos {
    display: flex;
    gap: 2rem;
    margin: 30px ;
}


.academicos img {
    max-width: 50%;
}

footer {
    margin-block: 0;
    padding: 16px;
}

