@charset "utf-8";
* {box-sizing: border-box;
list-style: none}

img {
    /* para que las imágenes nunca sean mayores que la caja que las contienen */
    max-width: 100%;
    height: auto;
}

body {
    background-color: rgb(165, 42, 42);
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 100vh;
    justify-content: space-between;
    max-width: 50rem;
    padding: 1rem;
    margin: 0 auto;
}

#saens {
    max-width: 250%;
    height: auto;
   box-shadow: 0 .35em .5em rgba(0, 0, 0, .35);
    border-radius: 50%;
       margin: 2.2em auto 2em auto;
    display: block;
}


/* ----------- header ----------- */

header{ 
    background-color: rgb(219, 0, 0);
}

header nav ul { 
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding:0em;
    
}

header nav ul li {
    display:flex;
    list-style: none;   
}

header nav ul li a{
padding: 0.4em;
    color: white;
    text-decoration: none;
    font-weight: 500; 
    font-size: 1em;
    
    }

header nav ul li:hover{
     background-color:brown;
    border-radius: 4em;      
}



/* ----------- main ----------- */

main section {
    padding-right: 1em;
    padding-left: 1em;
    background-color: #EEF1F2;
    border-radius: 1rem;
    margin-top: 1em;
    margin-bottom: 1em;
    text-decoration: none;
}
main section h1{
    font-size:1.8em;
    color:brown;
    margin: 0;
    padding: 0.1em;
    border-bottom: solid .25em brown;
}
main section h2 {
    font-size: 1em;
    padding-top: .5em

    
}

article{
    padding-bottom: .5em;
}


.p1{font-size:.9em;    
}

/* ----------- main/equipo ----------- */

.equipo{
    flex-grow: 1;
}
.equipo ul {
    margin: 1;  
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
.equipo ul li {
    margin: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.equipo ul li a {
    color: brown;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.equipo ul li a:hover {
    text-decoration: underline;
}
.equipo ul li a img {
    border-radius: 50%; 
}
    

img {
    max-width: 100%;
    height: auto;
}
/* ----------- main/pertenencia ----------- */

#pertenencia{
    flex-grow: 1;
}




/* ----------- footer----------- */
footer{
    font-size:0.8em;
    color:bisque
}
/* ------- plan -------- */

#comitente{
    padding: 1em;
}
#comitente h2{
    font-size: 1em;
    color: brown;
    
}
/* ------- mapa -------- */

#map{
    max-width: 100%;
    padding: 1em;
}



/* ----- mediaqueries ------- */

@media (min-width: 391px) {
    .equipo ul {
    margin: 1;  
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}


    
}


    

    


