body {
    font-family: Arial, sans-serif;
    background-color: #ffcc33;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    flex-direction: column; /* Ermöglicht vertikale Anordnung der Inhalte */
    align-items: center; /* Zentriert die Inhalte horizontal */
    text-align: center; /* Zentriert den Text innerhalb der Elemente */
    padding: 10px; /* Optional: Platz rund um den Header hinzufügen */
}

.language-switch {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.language-switch button {
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
}

.language-switch .active {
    background-color: green;
    color: white;
}


h1 {
    margin-top: 50px;
    color: #333;
}

.footer {
    margin-top: 50px;
    color: #333;
}


/* Für sehr kleine Bildschirme (z.B. Smartphones im Hochformat) */
@media (max-width: 480px) {
    .logo {
        width: 30vw; /* Größer auf kleineren Bildschirmen */
    }
    .start-button {
        width: 80%; /* Größer und mehr Platz für Button auf kleinen Bildschirmen */
        padding: 15px;
        font-size: 18px;
        background-color: #000;
        color: #ffcc33;
        margin-top: 20px;
    }
}

/* Für mittelgroße Bildschirme (z.B. Tablets im Hochformat) */
@media (min-width: 481px) and (max-width: 768px) {
    .logo {
        width: 25vw; /* Mittelgroß auf Tablet-Bildschirmen */
    }
    .start-button {
        width: 70%; /* Angepasste Breite für Tablet */
        padding: 15px;
        font-size: 20px;
        background-color: #000;
        color: #ffcc33;
        margin-top: 20px;
    }
}

/* Für große Bildschirme (z.B. Desktop) */
@media (min-width: 769px) {
    .logo {
        width: 15vw; /* Kleinere Prozentzahl, da Desktop-Bildschirme mehr Platz bieten */
        max-width: 200px; /* Maximale Breite nicht überschreiten */
    }
    .start-button {
        width: 50%; /* Größere Desktop-Bildschirme: kleinere Button-Breite */
        padding: 15px;
        font-size: 24px;
        background-color: #000;
        color: #ffcc33;
        margin-top: 20px;
    }
}

button {
    border-radius: 8px;
    padding: 10px 20px; /* Optional: Padding für ein einheitliches Button-Design */
    font-size: 16px; /* Optional: Schriftgröße anpassen */
}


