body, html {
overscroll-behavior: none; /* Prevents the bounce effect */
    width: 100%;
    height: 100%
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: black;
    width: 100%;
    height: 100%
}
header {
    width: 100%;
    height: 10vh;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 2;
    top: 0;
    color: rgb(255,218,185);
    display: flex;
    transform: translateY(-100%);
    transition: opacity .2s ease-in, transform 0s .2s;
    opacity: 0;
}

#header.active {
    transform: translateY(0);
    opacity: 1;
    transition: transform .4s ease-out;
    display: flex;        
    background: linear-gradient(180deg, rgba(0,0,0,.5), transparent);
}

#mobileMenuBtn {
    display: flex;
    align-items: center;
    width: auto;
    height: 100%;
    background-color: transparent;
    user-select: none;
    border: none;
    padding: 0 2em;
    z-index: 1;
}
#mobileMenuBtn svg{
    user-select: none;
    width: 100%;
    height: 40%;
}
#mobileMenuBtn #svg_close {
    display: none;
}
#mobileMenuBtn path {
    fill: #fff;
}


.mobile-nav{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    z-index: 1;
}
.mobile-nav.show {
    display: flex;
}
.mobile-nav a {
    width: 100%;
    display: flex;
    padding: 0.5em;
    font-size: 1.4em;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
}
.mobile-nav a:hover{
    text-decoration: underline;
}
.mobile-nav a.link-blog {
    font-size: 1em;
    line-height: 1.4em;
}
section {
    margin-top: 10vh;
    display: flex;
}
#section-home {
    margin: 0;
    width: 100%;
    height: 100%;


    background-image: url(../img/6.jpg);
    background-size: cover;
    background-position: center;
}

.mobile-nav a.social-link {
    font-size: 3em;
}


.container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#container_home {
    /*background-image: url(../img/6.jpg);
    background-size: cover;
    background-position: center;*/
}
h1, button#start {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
    z-index: 1;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 3em;
    color: #fff;
}
button#start {
    height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: center;
    justify-content: center ;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    opacity: 0;
}
h1 {
    text-indent: -1000em;
}
footer {
    z-index: 2;
    bottom: 0;
    display: flex;
    width: 100%;
    text-align: center;
    position: fixed;
    font-size: .7em;
    color: #fff;
    bottom: 1vh;
    text-shadow: 0 0 .2em #000;
    justify-content: center;
}
.audioPlaying footer {
    bottom: calc(1vh + 50px);
    transition: bottom 1s;
}
footer a {
    color: #fff;
    font-size: 2em;
}
footer a i {
    transition: transform 1s, color 1s;
}
footer a:hover i {
    transition: transform .2s, color 3s .2s;
    color: red;
    transform: scale(1.2);
}

#audioIntro {
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 3;
    filter: invert(1);
    width: 100%;
}

#logText {
    position:fixed;bottom:0; width:100%;height:14vh;display:none;
}