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

:root {
    --color-principal: #baf72c;
    --color-secundario: #bd2155;
    --color-fondo: #dcdfe5;
    --espacio-chico: 0.5rem;
    --espacio-medio: 1rem;
    --borde-redondeado: 0.5rem ;
    --sombra-suave: 0 0.25rem 0.5rem rgba(0,0,0,0.5);
}

body{
    font-family:"Yanone Kaffeesatz", sans-serif;
    background-color: #bd2155;
    flex-direction: column;
    align-items: center;
    display: flex;
}

header{
    background-color:#eae995;
    padding: 3rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 80rem;
}

h1{
    color: #eae995;
    font-family: "Yanone Kaffeesatz", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}

h2{
    color: #bd2155;
    font-family: "Yanone Kaffeesatz", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-align: center;
}

h3{
    color: #bd2155;
    font-family: "Yanone Kaffeesatz", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-align: center;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

figure{
    margin: 1rem 0;
    display: inline-block;
}

figure img{
    width: 16rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin: 0.5rem;
}

main > figure img{
    width: 100%;
    max-width: 40rem;
}

section{
    background-color:#eae995;
    padding: 2rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 80rem;
}


a{
     color: #6508a3
}

article {
    display: flex;
    flex-direction: column;
    align-items: center
}

.galeria h2{
    margin-bottom: 1rem;
}

.fotos{
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pantallas{
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    text-align: center;
}

.pantallas img{
    width: 13rem;
    height: auto;
}

.datos{
  padding-left: 3rem;
  list-style: none;
  text-align: center;
}


.datos-academicos{
    text-align: center;
}

.datos-academicos #logofadu{
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

footer {
   color: #eae995;
   text-align: center
}