/* Tipografía */
h1,h2,h3,h4,h5,p,ul,li {
    font-family:'Trebuchet MS';
}

body {
    background-color: rgb(212, 200, 183);
    margin: 0;
    padding: 0;
}

/* Header */
header {
    padding: 20px;
    background-color: rgb(79, 51, 14);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 15px;
  }
  header img {
    width: 150px;
    height: auto;
    background-color: white;
    justify-self: center; 
  }

/* Menú */
.menu {
    grid-area: menu;
    width: 100%;
    display: grid;
    justify-content: center;
}
.menu ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
    
}
.menu a {
   
    border-radius: 10px;
    font-weight: bold;
    background-color: rgb(44, 33, 2);
    color: rgb(212, 200, 183);
    text-decoration: none;
    padding: 10px;
    display: block;
    text-align: center;
    
    
}

.menu a:hover {
    background-color: rgb(212, 200, 183);
    color: rgb(43, 35, 19);
}

/* Títulos */
h1 {
    color: rgb(56, 41, 10);
    font-size: 2em;
    box-sizing: border-box;
    margin: auto;
    padding: 20px;
    text-align: center;
    text-decoration: underline;
}

h2 {
    color: rgb(73, 61, 4);
    text-decoration: underline;
    border-left: 5px solid;
    padding: 10px;
    margin: auto;
}

h3 {
    color: rgb(78, 60, 10);
}
/* Presentación tema */
.tema p{
    margin-inline: 1em;
}

/* Presentación equipo */
.equipo a {
    text-decoration: none;
}

.equipo h2 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.contenedor_equipo {
    display: flex;
    margin: auto;
    align-items: center;
    flex-direction: row;
    border: 1px solid rgb(216, 214, 214);
    padding: 5px;
    background-color: rgb(184, 161, 130);
    border-radius: 10px;
    flex-wrap: wrap;
}

.contenedor_equipo img {
    width: 100%;
    height: auto;
    border: 5px solid rgb(73, 61, 4);
}

.equipo article {
    text-align: center;
    list-style: none;
    padding: 5px;
    margin: auto;
    align-items: center;
}

.equipo h3 {
    text-decoration: underline;
}

.equipo p{
    color: rgb(73, 61, 4);
}

/* Datos académicos */
.academico h2 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.academico img {
    width: 60%;
    height: auto;
}

.academico {
    align-items: center;
}

.academico article {
    margin: 20px;
    margin-bottom: 40px;
    border: 1px solid;
    padding: 20px;
    background-color: rgb(184, 161, 130);
}
.academico ul,.academico li {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-block-end: 2em;
}

.academico a{
    border-radius: 10px;
    background-color:rgb(44, 33, 2);
    padding: 1em;
    color: rgb(212, 200, 183);
    text-decoration: none;
}
.academico a:hover{
    border-radius: 10px;
    border: 2px solid rgb(44, 33, 2);
    background-color:rgb(212, 200, 183);
    padding: 1em;
    color: rgb(44, 33, 2);
    text-decoration: none;
}

.dgpc img {
    background-color: rgb(255, 255, 255);
}

.academico p {
    text-decoration: underline;
    font-weight: bold;
}

/* Footer */
footer p {
    color: rgb(170, 170, 170);
    padding: 10px;
    font-size: small;
}

footer {
    background-color: rgb(107, 81, 29);
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}

/* Imágenes mapa y plan */
#imagen_mapa,
#imagen_plan {
    border: 3px solid rgb(73, 61, 4);
    width: 100%;
    height: auto;
}