@import url(https://fonts.googleapis.com/css?family=Oswald:300,400,700|Merriweather:400,300,300italic,400italic,700);

html{
    font-size: 1em;
    box-sizing: border-box;
}
h1,h2{
    font-family: "Oswald", sans-serif;
    font-weight: 300;

}
body{
    font-family: "Merriweather", serif;
    font-weight: 300;
    margin: 0px;
}
.cabecera{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 0;
}
    #logo{
        height: 180px;
        padding: 10px;
        position: relative;
        display: block;
    }
    .cabecera h1{
        font-family: courier, sans-serif;
        margin-top: 0px;
        text-align: center;
        align-items: center;
        align-content: space-between;
    }

    nav ul{
    list-style:none;
    margin: auto;
    -webkit-padding-start: 0px; /*para quitar el padding de 40px que tienen la ul y ol por defecto*/
    padding-start: 0px;
    display: flex;
    display-direction: row;
    flex-wrap: wrap;
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
}
        nav li {
            width: 100px;
            height: 20px;
            font-family: "Oswald", sans-serif;
            text-transform: uppercase;
            padding: 10px;
            text-align: center;
            background-color: #ae5739;
            margin-right: 10px;
            margin-bottom: 10px;
            border-radius: 5px 25px 25px 5px;
            -moz-border-radius: 5px 25px 25px 5px;
            -webkit-border-radius: 5px 25px 25px 5px;
            -webkit-box-shadow: 5px 10px 5px 0px rgba(0,0,0,0.75);
            -moz-box-shadow: 5px 10px 5px 0px rgba(0,0,0,0.75);
            box-shadow: 5px 10px 5px 0px rgba(0,0,0,0.75);
        }  
.envoltorio{
    margin-bottom: 100px;
}
#hola{
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}
    .enunciado{
        font-size: 1.2em;
        font-weight: 700;
        color: #6c4c5b;
        background-color: #cbb77a;
        border: 1px solid black;
        width: 80%;
        padding: 20px;
        margin: 0 auto;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }

.galeria{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /*para que el contenido fluia y no se salga de la sección*/
    align-items: center;
    align-content: center;
    max-width: 100%;
    overflow: hidden;
}
.polaroid{
        border: 1px solid black;
        padding: 10px 10px 15px 10px;
        background-color: #e0e4cc;
        -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
        -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
        box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    }
    figcaption{
        text-align: center;
        font-family: "Oswald", sans-serif;
        font-weight: 300;
    }
.titulo{
    text-transform: uppercase;
    color: #ae5739;
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    background: -webkit-linear-gradient( 0deg, #000000, #523333, #000000);
    background: -o-linear-gradient( 0deg, #000000, #523333, #000000);
    background: -moz-linear-gradient( 0deg, #000000, #523333, #000000);
    background: linear-gradient( 0deg, #000000, #523333, #000000);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
#movimiento .galeria{
    border: 1px solid black;
}
footer{
    font-family: courier, serif;
    color: #e0e4cc;
    background-color: #ae5739;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
}
#subir{
   text-align: center;
   margin: 50px;
   color: #ae5739;
}
a{
    text-decoration: none;
    color: #ffffff;
}
