body {
    background: #fff;
    color: #000;
    font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
}
.container {
    max-width: 80ch;
    width: 100%;
}
header, footer {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 2em;
    text-transform: uppercase;
}
footer { margin-top: 3em; margin-bottom: 0; }
h1, h2, h3 { font-size: 14px; margin: 1.5em 0 0.5em 0; text-transform: uppercase; }

/* Die Sektion für die Einrückung */
.section-content {
    margin-left: 4ch;
    margin-bottom: 1.5em;
}

/* NEU: Präziser Abstand für die Navigation */
nav[aria-label="Main Navigation"] {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1.5ch; /* Kontrolliert den Abstand zwischen den Links */
}

a { color: #000; text-decoration: underline; }
a:hover { background: #000; color: #fff; text-decoration: none; }

ul { list-style: none; padding: 0; margin: 0; }
li { margin-bottom: 0.5em; }

pre, code {
    display: block;
    margin-left: 0ch;
    font-style: italic;
    white-space: pre-wrap;
    background: #f4f4f4;
    padding: 0.5em;
    border-left: 3px solid #ccc;
}
.smaller { font-weight: normal; text-transform: lowercase; opacity: 0.7; }
