<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.menu {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* wichtig: zentriert horizontal */
    align-items: center;     /* vertikal mittig */
    background-color: black;
    padding-top: 20px;            /* Abstand innerhalb des Containers oben (z.â€¯B. Ã¼ber dem Bild) */
    padding-bottom: 20px;         /* Abstand innerhalb des Containers unten */
    color: #ffffff;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    height: 20px; /* 68px BannerhÃ¶he + 10px oben/unten Padding */
}

.menu a {
    display: block;
    text-decoration: none;
    cursor: pointer; /* Zeigt einen Hand-Cursor an, um InteraktivitÃ¤t anzuzeigen */
}

.menu-banner {
    height: 28px;
    width: auto;
    display: block;
}</pre></body></html>