@keyframes fadeInMove {
  0% {
    opacity: 0;
    transform: translateX(20px); /* Startposition, z.B. leicht nach unten versetzt */
  }
  100% {
    opacity: 1;
    transform: translateX(0);    /* Zielposition */
  }
}

.header-nav-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    justify-items: center;
}

.header-nav-container img { /* open */
    max-width: 2rem;
    height: auto;
}

.header-nav-container ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.header-nav-container li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-nav-container a {
    margin: 0;
    padding: 1rem;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    text-decoration: none;
    color: white;
}

.fullscreen-nav {
    display: none;
}

.fullscreen-nav img { /* close */
    position: absolute;
    top: 1rem;
    right: 1rem;
    max-width: 2rem;
    height: auto;
    cursor: pointer;
}

.fullscreen-nav.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;

    background-color: rgb(44, 15, 1);
    color: white;

    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fade-in-move {
    animation: fadeInMove 0.1s ease-in forwards;
}


/* Tablet (ab 601px) */
@media (min-width: 601px) and (max-width: 1024px) {
    
}

/* Desktop (ab 1025px) */
@media (min-width: 1025px) {
    .header-nav-container {
        margin-right: 20%;
    }

    .fullscreen-nav.open {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 35em;
        height: 100vh;
    }

    .fullscreen-nav img { /* close */
        top: 2rem;
        right: 1rem;
    }

    .header-nav-container a {
        margin: 0;
        
        width: 100%;
        text-align: left;
        font-size: 2rem;
        text-decoration: none;
        color: white;
    }
}