/* Hamburger Menü */
.hamburger {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.menu {
    position: fixed;
    top: 0;
    left: -250px;
    /* Startposition des Menüs (nicht sichtbar) */
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    transition: left 0.3s ease;
    z-index: 1;
    padding-top: 60px;
}

.menu ul {
    list-style-type: none;
    padding: 0;
}

.menu ul li {
    padding: 8px;
    text-align: center;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.menu.open {
    left: 0;
    /* Menü einblenden */
}

body {
    font-family: Arial, sans-serif;
}

#infoBar {
    font-family: 'Segment7Standard', monospace;
    font-size: 48px;
    align-items: center; /* Vertikale Ausrichtung der Spans */
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    margin-bottom: 5px;
    white-space: nowrap;
}


/* Titel linksbündig hinter dem Menü */
#title {
    position: relative;
    top: 0px;
    left: 60px;
    /* Platz für das Hamburger-Menü schaffen */
    font-size: 2.5em;
    z-index: 0;
    /* Titel hinter dem Hamburger-Menü */
    margin: 0;
}

/* Optional: Übergangseffekte für den Text oder andere Elemente */