body {
    margin: 0;
    background-color: #1f232d;
    color: #fff;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

/* Header Container */
header.container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid #d0d341;
    border-radius: 5px;
    box-shadow: 0 1px 3px 1px rgba(214, 216, 74, 0.4);
    margin: 8px; 
}

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 */


/* navigation */
.navContainer {
    width: 84%;
    height: 45px;
    padding: 8%;
}

nav {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid #d0d341;
    border-radius: 5px;
    box-shadow: 0 1px 3px 1px rgba(214, 216, 74, 0.4);
}

nav > ul {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

nav > ul > li::marker {
    content: '';
}