@charset ="utf-8";
@font-face {
    font-family: 'source_sans_proregular';
    src: url('sourcesanspro-regular-webfont.eot');
    src: url('sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('sourcesanspro-regular-webfont.woff2') format('woff2'),
         url('sourcesanspro-regular-webfont.woff') format('woff'),
         url('sourcesanspro-regular-webfont.ttf') format('truetype'),
         url('sourcesanspro-regular-webfont.svg#source_sans_proregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
body { 
    background-color: white;
}

*{
    padding: 0;
    margin: 0;
}
h1{
    font-family: 'source_sans_proregular', sans-serif;
    font-size: 4rem;
    color: dodgerblue;
}
h2 {
    text-align: center;
    font-family: 'source_sans_proregular', sans-serif;
    padding: 5px;
    font-size: 2rem;
    color: #555555;
    margin-top: 20px;
}
p{
    font-family: sans-serif;
    line-height: 1.4;
    color: #555555;
    padding: 5px 0px;
    font-size: 0.8rem
}

header{
    text-align: center;
    background-image: url(../img/header.jpg);
}

header li{
    display: inline;
    padding: 0px 10px;
}

header img{
    height: 150px;
    padding: 30px;
}

nav{
    background-color: dodgerblue;
    padding: 20px;
    text-align: center;
    margin: 20px 0
}

nav a{
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-family: 'source_sans_proregular', sans-serif;
}

nav a:hover{
    border-bottom: 3px solid #fff;
    transition: all ease-in-out 100ms
}

section h3 {
    text-align: center;
}



/*--------------------------- Sección Integrantes --------------------------*/
.integrantes{
    max-width: 960px;
    display: flex;
    margin: 0 auto;
    margin-top: 30px;
}
.datos{
    max-width: 960px;
    margin: 0 auto;
}

h3 {
    font-family: 'source_sans_proregular', sans-serif;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.foto{
    width: 50%;
    text-align: center;
    padding: 20px;
}
.titulo{
    color: dodgerblue;
    font-weight: 800;
}
.fondo1{
    background-color: #f4f4f4;
}
.fondo2{
    background-color: #e8e8e8;
}

.foto a{
    display: block;
    text-align: center;
    font-family: 'source_sans_proregular', sans-serif;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    padding: 10px;
}

.foto a:hover{
    color: cornflowerblue;
    transition: all 300ms ease-in-out 
}

.datos h2{
    text-align: left;
    padding: 0px;
    margin-bottom: 15px;
}

/*------------------ Mapa ------------------*/
.mapa{
    max-width: 960px;
    margin: 0 auto;
}

.mapa img{
    width: 100%;
    margin: 0 auto;
}

/*------------------ Carta -----------------*/

.carta{
    margin: 0 auto;
    text-align: center;
    max-width: 960px;
    padding: 50px 0px;
}

/*------------------ Footer ---------------*/

footer{
    margin-top: 30px;
}

footer .container {
    background-color: black;
    font-family: 'source_sans_proregular', sans-serif;
    font-size: 13px;
    color: white;
    padding: 20px;
    text-align: center;
}

@media (max-width: 680px) {
    .integrantes{
        display: flex;
        flex-direction: column;
    }
    .foto{
        width: 100%
    }
}