header{
    width:100%;
    position: relative;
}

header img{
    width:100%;
}

header h1{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-90%,-50%);
    color:#FCF7EE;
    width:50%;
    border:none;
    line-height: 10vw;
    font-family: Playlist;
    font-weight:normal;
    font-size: 10vw;
    text-align:left;
}

header h2{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-67%, 80%);
    color:#FCF7EE;
    width:60%;
    border:none;
    line-height: 10vw;
    font-size:3.5vw;
    font-family:OpenSauce;
    font-weight:normal;
    text-align:left;
}

#burger{
    width:25px;
    height:25px;
    left:1em;
    top:1em;
    position:absolute;
    cursor: pointer;
    z-index: 10;
}

#burger .burger_top{
    position:absolute;
    width:100%;
    height:4px;
    top:0;
    background-color:#FAF8FA;
    transition:0.2s;
}

#burger .burger_center{
    position:absolute;
    width:100%;
    height:4px;
    top:50%;
    transform:translate(0, -50%);
    background-color:#FAF8FA;
    transition:0.1s;
}

#burger .burger_bottom{
    position:absolute;
    width:100%;
    height:4px;
    bottom:0;
    background-color:#FAF8FA;
    transition:0.2s;
}

nav{
    width:100%;
    height:calc(100vh - 40px);
    position:absolute;
    top:40px;
    left:-100%;
    background-color: #FAF8FA;
    transition:left 0.2s ease;
    z-index:10;
}

#cerrar_nav{
    text-align: right;
    font-size:2em;
    cursor:pointer;
}

nav ul{
    width:100%;
    padding: 0;
    list-style: none;
}

nav ul li{
    width:100%;
    padding:1.5em 0 1.5em 2em;
    text-align:left;
    font-family:OpenSauce;
    font-size:1.11rem;
}

nav ul li a{
    display:block;
    color:inherit;
    text-decoration: none;
    cursor:pointer;
    font-size: 1.11rem;
    height:25px;
    transition:0.2s;
}

nav ul li a:hover, nav ul li a:active{
    font-weight: bold;
    font-size:1.5rem;
    transition:0.2s;
}

ul.rrss{
    width:100%;
    max-width:500px;
    display:none;
    flex-flow:row wrap;
    justify-content: center;
    align-content: center;
    padding:0;
    margin:0 auto;
}

ul.rrss li{
    width:25%;
    height:70px;
    margin:1rem;
    display:flex;
    justify-content: center;
    align-items: center;
    padding:0;
    cursor:pointer;
}

ul.rrss li:hover{
    background-color: transparent;
}

ul.rrss li img{
    width:70px;
    height:70px;
}

@media(min-width:1367px){
    header h1{
        position:absolute;
        top:50%;
        left:50%;
        transform: translate(-90%,-110%);
        color:#FCF7EE;
        width:50%;
        border:none;
        line-height: 10vw;
        font-family: Playlist;
        font-weight:normal;
        font-size: 10vw;
        text-align:left;
    }

    header h2{
        position:absolute;
        top:50%;
        left:50%;
        transform: translate(-67%, -40%);
        color:#FCF7EE;
        width:60%;
        border:none;
        line-height: 10vw;
        font-size:3.5vw;
        font-family:OpenSauce;
        font-weight:normal;
        text-align:left;
    }

    #burger{
        display:none;
    }

    nav{
        width:100%;
        height:auto;
        position:relative;
        background-color: #FAF8FA;
        transition:left 0.2s ease;
        z-index:10;
        left:0;
        top:0;
    }

    nav ul{
        width:100%;
        padding: 0;
        list-style: none;
        display:flex;
        flex-flow:row nowrap;
        justify-content: space-between;
        align-items: center;
    }

    nav ul li{
        width:20%;
        padding:1.5em;
        text-align:center;
        font-family:OpenSauce;
        font-size:1.5rem;
    }

    nav ul li:hover{
        background-color:#E3B367;
    }

    nav ul li a{
        display:inline;
        color:inherit;
        text-decoration: none;
        cursor:pointer;
        font-size:1.5rem;
    }

    nav ul li a:hover, nav ul li a:active{
        font-weight: bold;
        font-size:1.5rem;
    }

    ul.rrss{
        width:100%;
        max-width:calc(48px * 6);
        display:none;
        flex-flow:row nowrap;
        justify-content: center;
        align-content: center;
        padding:0;
        margin:0 auto;
    }

    ul.rrss li{
        width:calc(100% / 6);
        height:48px;
        margin:1rem 0.25rem;
        display:flex;
        justify-content: center;
        align-items: center;
        padding:0;
        cursor:pointer;
    }

    ul.rrss li img{
        width:48px;
        height:48px;
    }
}