.header{
    position: absolute;
    width: 100%;
    padding: 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.logo{
    position: relative;
    z-index: 97;
}

.logo img{
   max-height: 100px;
}

.burger{
    position: relative;
    width: 40px;
    margin-right: 2em;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: transparent; 
    -webkit-user-select: transparent; 
    -ms-user-select: transparent; 
    user-select: transparent; 
    z-index: 99;
}

.burger .line{
    background-color: #fff2eb;
    height: 2px;
    width: 100%;
    margin-top: 5px;
    border-radius: 5px;
    transition-duration: 0.25s;
}

.burger .line1{
    margin-top: unset;
}

.burger .line2{
    width: 100%;
}

.burger-line-right{
    transform: translateX(10px);
}

.burger-line-left{
    transform: translateX(0px);
}

.burger-line-1-animated{
    transform: translateY(5px);
}

.burger-line-2-animated{
    width: 0 !important;
}

.burger-line-3-animated{
    transform: translateY(-5px);
}

.burger-star-wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
}

.burger-star{
    position: absolute;
    width: 40%;
    fill: #d10a14; 
    opacity: 0;
    z-index: -1;
}

.animateStars{
    animation: animatingStars 1s .25s 1;
    animation-timing-function: ease-out;
}

nav{
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #191919;
    text-transform: uppercase;
    transform: translateX(-100%);
    transition-duration: .5s;
    opacity: 0;
    overflow-x: hidden;
    z-index: 98;
}

/* Wird über ui.js getoggelt */
.nav-visible{
    transform: translateX(0%);
    transition-duration: .5s;
    opacity: 1;
}

nav ul{
    padding: 0em 2em;
}

nav ul li{
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.3rem;
    opacity: 0;
    list-style: none;
    margin-top: 2em;
    transition-duration: 1s;
    /* transform: translateX(0%) scale(0%); */
}

.nav-li-visible{
    opacity: 1;
    transition-duration: 1s;
    /* transform: translateX(0%) scale(100%); */
}

nav ul li:first-child{
    margin-top: unset;
}

nav a{
    color: #fff2eb;
    text-decoration: none;
    transition-duration: .2s;
}

nav a:hover{
    color: #d10a14;
    transition-duration: .2s;
}

/* Keyframes */

@keyframes animatingStars {
    0% {
        opacity: 0;
        transform: rotate(0deg) scale(0);
    }

    20%{
        opacity: 0.6;
        transform: rotate(10deg) scale(30%);
    }
    
    40% {
        opacity: 1;
        transform: rotate(20deg scale(60%));
    }

    60% {
        opacity: 0.8;
        transform: rotate(30deg) scale(90%);
    }

    80% {
        opacity: 0.4;
        transform: rotate(40deg) scale(100%);
    }

    100% {
        opacity: 0;
        transform: rotate(40deg) scale(100%);
    }

}

/* ----- Mediaqueries ----- */

/* Ganz kleine Größen wie z.B. iPhone 4 */
@media (max-width: 320px){

    nav ul {
        padding: 0em 2em;
        padding-top: 2em;
    }

   nav ul li{
        font-size: 1.1rem;
        margin-top: 1.5em;
   }

}

/* Größer als Standardgröße */

@media (min-width: 650px){

    .header{
        padding: 2em;
    }

    .logo img {
            max-height: 120px;
    }

}

@media (min-width: 768px){

    .burger{
        width: 50px;
    }

    .burger .line{
        margin-top: 6px;
    }

    nav ul {
        padding: 0em 3em;
    }

    nav ul li{
        font-size: 2.2rem;
        margin-top: 1.2em;
    }

}

@media (min-width: 992px){

    .heaader{
        padding-top: 3em;
    }

    .burger{
        width: 60px;
    }

    nav ul {
        padding: 2em 5em;
        padding-bottom: unset;
    }

    nav ul li{
        font-size: 2.5rem;
        margin-top: 1em;
    }

}

@media (min-width: 1200px){

    .header{
        padding: 2em 3em 3em 3em;
    }

    .logo img {
            max-height: 140px;
    }
    
}

@media (min-width: 1400px){

    nav ul li{
        font-size: 3rem;
        margin-top: .9em;
    }
    
}

@media (min-width: 1700px){

    .header{
        padding: 3em 6em;
    }

    .logo img{
        max-height: 160px;
    }

    .burger{
        margin-right: 7em;
    }
    
    .burger .line {
        margin-top: 8px;
    }

    nav ul {
        padding: 4em 5em;
        padding-bottom: unset;
    }

    nav ul li {
        font-size: 3.5rem;
    }

}