body {
    margin: 0;
    background-color: #1f232d;
    color: #fff;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow: clip;
}

/* Header Container */
header.container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgba(0,0,0,0.2);
    border-bottom: 1px solid #d0d341;
    box-shadow: 0 1px 3px 1px rgba(214, 216, 74, 0.4);
    margin-bottom: 10px;
}

header.container > .logo {
    position: absolute;
    left: 20px;
    height: 40px;
    width: 40px;
}

header.container > .title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    color: #fff; /* weiß für guten Kontrast */
    letter-spacing: 1px;
}


/* footer */
footer {
    height: 20px;
}

/* navigation */
.navContainer {
    width: 84%;
    max-width: 350px;
    margin: 0 auto;
    height: 45px;
    padding: 10px 8%;
    position: sticky;
    bottom: 0;
    font-size: x-large;
}

nav {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    border: 1px solid #d0d341;
    border-radius: 5px;
    box-shadow: 0 1px 3px 1px rgba(214, 216, 74, 0.4);
    backdrop-filter: blur(10px);
}

nav > ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

nav > ul > li {
    height: fit-content; 
}

nav > ul > li::marker {
    content: '';
}

nav > ul > li > a {
    text-decoration: none;
    color: #fff;
    position: relative;    
}

nav > ul > li > a::after {
    content: '';
    width: 100%;
    height: 1px;
    color: #d0d341;
    right: 100%;
    bottom: -1px;
    position: absolute;
}

nav > ul > li > a:hover nav > ul > li > a::after {
    text-shadow: 0 0 2px #d0d341;
};