#container {
    display: flex;
    max-width: 1400px; /* Gesamtbreite begrenzen */
    overflow-x: hidden;
    margin: auto;
    overflow: hidden;
}

#left-column {
    width: 40%;
    border-radius: 10px;
    max-width: 700px; /* Verhindert, dass es zu breit wird */
    height: 100vh; 
    font-size: 75%; 
    background-color: rgba(0, 0, 0, 0.75);
    color:#fff;
    padding: 20px;
    overflow-x: hidden;
}
#right-column {
    flex: 1; /* Damit es flexibel wächst */
    max-width: 700px; /* Begrenzung auf maximal 700px */
    height: 100vh; 
    border-radius: 20px;
    position: relative;
    overflow-y: scroll;
}
#meine {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 200px;
    height: 150px;
    padding:5px;
    background-color: rgba(f, f, f, 0.5);
    transform: translate(-50%, -50%); /* Genau in die Mitte der rechten Spalte */
}
#kopf{height:100px;border-top-right-radius: 10px; border-top-left-radius: 10px;}
@media (max-width: 700px) {
    #left-column {
        display: none; /* Versteckt die linke Spalte unter 700px */
    }

    #right-column {
        width: 100%; /* Rechts nimmt dann den ganzen Platz ein */
    }
}
/* Grundlayout */
.hamburger-menu {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9999;
}

/* Menü-Icon */
.menu-icon {
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon span {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 5px 0;
}

/* Menü Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -120%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #222;
    color: white;
    padding: 20px;
    box-shadow: -4px 0px 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 9999;
}

/* Menü aktiv */
.menu-overlay.active {
    right: 0 !important;
}

/* Close Button */
.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    text-align: right;
}

/* Menüstruktur */
.menu-items {
    list-style: none;
    padding: 0;
}

.menu-items b {
    display: block;
    margin: 15px 0 10px;
    font-size: 18px;
    color: #ffcc00;
}

.menu-items li {
    margin: 5px 0;
}

.menu-items a {
    text-decoration: none;
    color: #ddd;
    font-size: 16px;
    padding: 10px;
    display: block;
}

.menu-items a:hover {
    background: #444;
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
    .menu-overlay {
        width: 100%;
        max-width: none;
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
html, body {background-color: rgb(246, 246, 250);color: #000000;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .button {
                padding: 12px 16px; /* Mehr Platz für Buttons */
                font-size: 2em; /* Größere Schrift in Buttons */
            }
  .tt{ font-size: 1.2em; text-shadow: 2px  2px 2px #fff,
                2px -2px 2px #fff,
                -2px  2px 2px #fff,
                -2px -2px 2px #fff;}
    .text2{
    color:#000;
    font-weight: bold;
    font-size:35px ;
    text-shadow: 2px  2px 2px #fff,
                2px -2px 2px #fff,
                -2px  2px 2px #fff,
                -2px -2px 2px #fff;
  }
  input{border-radius: 7px;}
  @media screen and (max-width: 768px) {
            body {
                font-size: 18px; /* Größere Schrift für Mobilgeräte */
            }
            button {
                padding: 12px 12px; /* Mehr Platz für Buttons */
                font-size: 1.4em; /* Größere Schrift in Buttons */
            }
            .button {
                padding: 12px 12px; /* Mehr Platz für Buttons */
                font-size: 1.5em; /* Größere Schrift in Buttons */
            }
            a {
                font-size: 1.5em; /* Links lesbarer machen */
            }
        }
  
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden; /* Verhindert horizontalen Bildlauf */
        }
         
        #logo-container {
            position: absolute;
            top: 10px; /* Abstand von oben */
            right: 10px; /* Abstand von rechts */
        }
        
        #logo {
            max-width: 180px; /* Passe die Größe des Logos an */
            height: auto;
        }
    
        
        .la{display:block;width:80%;margin:auto; text-align: center; border:1px solid #fff;background-color: #000;border-radius: 10px;}
        .la:hover{text-align: center; border:1px solid #000;background-color: #fff;color:#000;}
        


              a{color:#111;}
              .sprechblase a{font-size:1em;}
        
        body {
          /*background-image: url('Detectiv400.png'); /* Pfad zum Bild */
          background-repeat: no-repeat; /* Kein Wiederholen */
          background-position: left bottom; /* Unten links positionieren */
          background-attachment: fixed; /* Optional: fixiert beim Scrollen */
        }