/*---- Resetear estilos por defecto*/
* {
    margin:0;
    padding: 0;
}

/*---- Estilos generales ----*/
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f0e8; 
    color: #333;
}

/*---- Header ----*/

header{
    display:flex;
    align-items: center;
    border-bottom: 3px solid #d9b38c;
    padding: 1em;
}
/*Etiqueta img que está dentro del header*/
header img {
    width: 90px;
    margin:1em;
}

header h1 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.5em;
    color: #8b5a2b;
}

/*Menú navegación*/
nav {
    margin: 1.5em 0;
    background-color: #e6d3c2;
    border-radius: 6px;
}

ul {
    list-style:none; /*Quitar los puntos de la viñeta*/
    display:flex; /*Poner todas las opciones unas al lado de otras*/
    justify-content: center;
    gap:2em;
    padding: 1em;
}

nav a {
    text-decoration:none;
    color: #5c3b1e;
    font-weight: bold;
}

nav a:hover {
   color: #a66a33;
}

/*Estilos parte principal*/
h2 {
    font-size: 1.3em;
    margin-bottom: 0.5em;
    color: #7b4c27;
    text-align: center;
}

h3 {
    font-size: 1.1em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #6a3e1a;
    text-align: center;
}

p {
    text-align: justify;
    margin: 2em 0;
}

section {
    max-width: 900px;
    margin: auto;
}

section img {
    width: 250px;
}

#galeria {
    display:flex;
    justify-content: space-around;
    flex-wrap:wrap;
}












