@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

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

:root {
    --color-primario: #698C46;
    --color-secundario: #91A663;
    --color-sombras: #38272a;
    color: #000000;
    --color-titulos: #615e1d;
    /* tipografias */
    --fuente-textos: "Red Hat Display", serif;
    --fuente-titulos: "Libre Franklin", italic;
    /*espacios*/
    --espacio-chico: 0.5rem;
    --espacio-medio: 1rem;
    --borde-redondeado: 2px;
    --sombra-suave: 0 2px 4px #0A330D;
}

img {
    max-width: 100%;
}

ul,
li {
    list-style-type: none;
}

body {
    background-image: url(../imagenes/pasto.jpg);
    background-position: center;
    background-attachment: fixed;
    font-family: var(--fuente-textos);
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--color-titulos);
    font-family: var(--fuente-titulos);
    text-wrap: balance;
}

header {
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    background-color: #698C46;
    box-shadow: 0 2px 4px #93A676;
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.header-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

footer {
    background-color: #38272a;
    color: #ebfff3;
    padding: 0.5rem;
}

#logo {
    background-color: beige;
    padding: 0.27rem 0.25rem 0 0.27rem;
    box-shadow: 0 2px 5px #38272a;
    margin-bottom: 1rem;
}

#logo img {
    aspect-ratio: 2/ 1;
    width: 100%
}

.menu-navegacion {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center
}

.boton-menu {
    padding: 0.2rem;
    background-color: beige;
    box-shadow: 0 2px 5px #38272a;
    border-radius: 2px;

}

.boton-menu a {
    color: #000000;
    font-size: 0.8em;
    text-decoration: none;
    font-weight: 700;
    color: var(--color-titulos);
}

.presentacion img {
    padding: 0.5rem;
}

.presentacion h1 {
    text-align: center;

}

.presentacion h2 {
    text-align: center;

}

.biografia {
    margin-top: 0.2rem;
    background-color: #91A663;
    padding: 0.6rem;
    margin: 0rem 0.5rem 0rem 0.5rem;
}

.biografia h3 {
    margin-bottom: 0.5rem;
}

.contenedor-imagenes {
    gap: 3rem;
    margin-top: 0.4rem;
    padding: 0.1rem 0rem 0.5rem 0;
    text-align: center;
}

.contenedor-imagenes img {
    aspect-ratio: 1/ 1;
    width: 40%;
    box-shadow: 0 3px 6px #38272a;
}

.contenedor-materias {
    background-color: #91A663;
    padding: 1.3rem;
    margin: 0rem 0.5rem 0rem 0.5rem;
    border-top: solid 2px #38272a;
}

.contenedor-materias h3,
h4 {
    margin: 0.6rem 0rem 0.3rem 0rem;
}

.protipo {
    background-color: #91A663;
    padding: 1.3rem;
    margin: 0rem 0.5rem 0rem 0.5rem;
    border-top: solid 2px #38272a;
}

.grupo {
    background-color: #91A663;
    padding: 1.3rem;
    margin: 0rem 0.5rem 0rem 0.5rem;
    border-top: solid 2px #38272a;
}

.caja-integrante {
    background-color: #93A676;
    margin-top: 0.6rem;
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.caja-integrante img {
    aspect-ratio: 1/ 1;
    width: 40%;
}

.datos-academicos {
    margin: 0rem 0.5rem 0rem 0.5rem;
}

.institucion {
    background-color: #93A676;
    padding: 1.5rem;
    margin: 0.5rem 0.5rem 0.5rem 0.5rem;
}

.institucion h5 {
    margin-bottom: 0.3rem;
}

.institucion img {
    margin-bottom: 0.4rem;
}

img[alt="uba"] {
    aspect-ratio: 3/ 1;
    width: 16%;
}

img[alt="fadu"] {
    aspect-ratio: 3/ 1;
    width: 30%;
}

img[alt="dgpc"] {
    aspect-ratio: 3/ 1;
    width: 60%;
}

.adicional {
    background-color: #6d775e;
    padding: 0.4rem 1.5rem 1.5rem 1.5rem;
    margin: 0.5rem 0.5rem 0.5rem 0.5rem;
}

.contacto {
    text-align: center;
}

footer p {
    margin-top: 0.6rem;
    text-align: center;
}

.contacto img {
    aspect-ratio: 1/ 1;
    width: 17%;
    box-shadow: 0 3px 6px #38272a;
}