* {
  margin:0;
  padding:0;
  font-family:"Arial";
}

.responsive-video {
    width: 100%;
    max-width: 800px; /* Maximale Breite für größere Displays */
    height: auto;    /* Verhältnis wird beibehalten */
    display: block;
    margin: 0 auto;  /* Zentriert das Video */
}

@media only screen and (max-width: 450px) {
    #desktop {
        display: none;
    }
    #tablet {
        display: none;
    }
    #menue {
        display: none;
    }
    
    #mobile {
        justify-content: space-between;
        margin:20px; 
        padding: 10px;
        min-height:30px;
        max-width:600px;
        background-color: #AAAAAA;
        border-radius: 18px;
        color:#000000;
        margin-bottom: 10px;
        font-size: 20px;
    }

    #menuecontent{
        width:97%; 
        background-color:#CCCCCC;
        text-align: center;
        padding:5px;
        border-radius: 18px;
        color: #000000;
        margin-bottom:10px;
    }
    
    .flex-container {
        display:flex;
        justify-content: space-between;
        margin:20px; 
        padding: 10px;
        min-height:30px;
        max-width:600px;
        background-color: #745e4d;
        border-radius: 18px;
        color:#000000;
        margin-bottom: 10px;
        font-size: 16px;
        flex-wrap: wrap;
    }

    .flex-item {
        flex-grow: 0;
        flex-shrink: 1;
        flex-basis: auto;
        margin-left: 5px;
        padding:5px;
    }
    
    .karussell {
        position: relative;
        width: 300px;
        max-width: 600px;
        overflow: hidden; /* Nur ein Bild sichtbar machen */
        border: 2px solid #ccc;
        border-radius: 10px;
    }
    
    .responsive-video {
        width: 90%; /* Nimmt 90% der Breite des Bildschirms ein */
    }
} 
@media only screen and (min-width: 450px) and (max-width: 1200px) {
    #desktop {
        display: none;
    }
    #mobile {
        display: none;
    }
    #menue {
        display: none;
    }
    
    .header {
        grid-area: header;
    }
    
    .navi {
        grid-area: navi;
        justify-self: start;
    }
    
    .navi2 {
        grid-area: navi2;
        justify-self: start;
    }
        
    .container {
        align-content:space-evenly;
        margin:20px; 
        padding: 10px;
        min-height:30px;
        min-width:450px;
        max-width:800px;
        background-color: #AAAAAA;
        border-radius: 18px;
        color:#000000;
        margin-bottom: 10px;
        font-size: 16px;
    }

    
    .button {
        width:110px;
        height:30px;
        line-height:30px;
        text-align: left;
        font-weight: bold;
        text-decoration: none;
        padding:5px;
        float:left;
    }
    
    .karussell {
        position: relative;
        width: 100%;
        max-width: 600px;
        overflow: hidden; /* Nur ein Bild sichtbar machen */
        border: 2px solid #ccc;
        border-radius: 10px;
    }
    
    .responsive-video {
        width: 70%; /* Nimmt 50% der Breite des Bildschirms ein */
    }
} 


@media only screen and (min-width: 1200px) {
    #mobile {
        display: none;
    }
    #tablet {
        display: none;
    }

    
    .logo {
        grid-area: logo;
    }
    
    .logo2 {
        grid-area: logo2;
        align-self: end;
    }
    
    .navi {
        grid-area: navi;
        justify-self: start;
    }
    
    .navi2 {
        grid-area: navi2;
        justify-self: start;
    }
    
    .container {
        align-content:space-evenly;
        margin:20px; 
        padding: 10px;
        min-height:30px;
        min-width:600px;
        max-width:800px;
        background-color: #AAAAAA;
        border-radius: 18px;
        color:#000000;
        margin-bottom: 10px;
        font-size: 16px;
    }
   
    .button {
        width:150px;
        height:40px;
        line-height:40px;
        text-align: left;
        font-weight: bold;
        text-decoration: none;
        padding:5px;
        float:left;
    }
    
    .karussell {
        position: relative;
        width: 100%;
        max-width: 600px;
        overflow: hidden; /* Nur ein Bild sichtbar machen */
        border: 2px solid #ccc;
        border-radius: 10px;
    }
    
    .responsive-video {
        width: 50%; /* Nimmt 50% der Breite des Bildschirms ein */
    }
} 

h2 {
    font-size:25px;
    font-weight:bold;
    margin-top:25px;
    margin-bottom:15px;
}

h3 {
    font-size:20px;
    font-weight:bold;
    margin-top:25px;
    margin-bottom:15px;
}

h4 {
    font-size:16px;
    font-weight:bold;
    margin-top:25px;
    margin-bottom:15px;
}

ul { 
    list-style-type:disc; 
    list-style-position: outside;
    margin-left: 0;
    padding-left: 0;
}
li {
    margin-left: 15px;
    padding-left: 5px; 
    text-indent: 0em;
    text-align: left;
}
     
p {
    margin-top:10px;
}

.eingabe {
    flex: 0 1 auto;
}

.eingabesuche {
    flex: 0 1 auto;
    margin: 0 auto 0 auto;
}

input.eingabe {
   background-color: #FFFFFF; 
}


div.weiter {
    text-align: left;
    align-self: flex-end;
}

input.weiter {
    display:inline-block;
    padding: 5px;
    width:160px;
    height:30px;
    margin-top: 5px;;
    margin-left: auto;
    margin-right: 1em;
    align-self: flex-end;
    text-align: center;
    font-size:18px;
    
}


a {
    color: #000088;
}

a:hover {
    color: #000088;
    background-color: #FFFFFF;
}

.clear-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    z-index:10;
}

.box {
    margin: 30px 20px 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5em;
    max-width: 800px;
    padding: 10px;
    min-height:50px;
    background-color: #CCCCCC;
    border-radius: 18px;
    color:#000000;
}

.system {
    margin: 30px 20px 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5em;
    max-width: 800px;
    padding: 10px;
    min-height:50px;
    background-color: #f6f3f0;
    border-radius: 18px;
}

.karussell-inhalt {
    display: flex;
    transition: transform 0.5s ease; /* Sanfter Übergang */
}

.karussell img {
    min-width: 100%; /* Jedes Bild nimmt genau die Breite des Karussells ein */
    height: auto;
}

.steuerung {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
    border-radius: 50%;
}

.steuerung.links {
    left: 10px;
}

.steuerung.rechts {
    right: 10px;
}

.steuerung:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.xliste li {
    list-style-type: none; /* Entfernt das Standard-Symbol */
    position: relative;
}

.xliste li::before {
    content: "❌"; /* Unicode-Zeichen oder ein anderes Symbol */
    color: green; /* Farbe des Symbols */
    font-size: 0.9em; /* Symbolgröße */
    position: absolute;
    left: -1.5em; /* Abstand vom Text */
}