* {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    --nav-color-navContainer-bg: rgba(180, 180, 180, 0.2);
    --nav-color-bg: rgba(0, 0, 0, 0.9);;
    --nav-color-text-hover: #fff;
    --color-grau: #999;
    --nav-color-text: #fff;
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-family: 'futosans-regular';}

/* Menu */
#navContainer {
    width: 100%;
    /*height: 60px;*/
    top: 0px;
    font-size: 15px;
    /*background-color: var(--nav-color-navContainer-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);*/
    border-bottom: 0px solid rgba(255, 255, 255, 0.8);
    z-index: 20;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
}

#navIcon {
    width: 60px;
    height: 60px;
    top: 0px;
    left: calc(100vw - 60px);
    position: absolute;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    z-index: 20;
}

.icon-burger:after {
    content: '☰';
    font-size: 50px;
    color: var(--color-grau);
    line-height: 40px;
}

.icon-X:after {
    content: '×';
    font-size: 50px;
    color: var(--nav-color-text);
    line-height: 50px;
}

.navLogo {
    width: auto;
    height: 40px;
    top: 10px;
    transition: 2s;
    transition-timing-function: ease;
}

.navLogo:hover {
    transform: rotate(360deg);
    transition: 2s;
    transition-timing-function: ease;
}

#navigation {
    width: 100%;
    top: 0px;
    position: fixed;
    font-size: 15px;
    background-color: var(--nav-color-bg);
    border: 0px solid rgba(255, 255, 255, 0.8);
    z-index: 20;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 1s;
    transition-timing-function: ease;
    overflow: hidden;
    display: grid;
    z-index: 10;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.navigationCenter {
    width: 100%;
    height: auto;
    transition: 1s;
    transition-timing-function: ease;
}

.navClosed {
    height: calc(0vh - 60px);
    transition: 1s;
    transition-timing-function: ease;
}

.navOpen {
    height: calc(100vh - 0px);
    transition: 1s;
    transition-timing-function: ease;
}

#navigation .navigationCenter a {
    width: 100%;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--nav-color-text);
    display: grid;
    /*line-height: 60px;*/
    margin-top: 20px;
    transition: 0.5s;
    transition-timing-function: ease;
}

#navigation a:hover {
    color: var(--nav-color-text-hover);
    scale: 1.2;
}

a {
    text-decoration: none;
    color: var(--color-grau);

}
a:hover {
    color: var(--nav-color-text-hover);
}

.footer {
    width: 100%;
    height: 20px;
    background-color: transparent;
    margin: 0px;
    border: 0px solid #f00;
    bottom: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: fixed;
    color: var(--color-grau);
    text-transform: uppercase;
    font-size: 8px;
    text-decoration: none;
    letter-spacing: 2px;
}