/* Grundlegende Stile, die Sie bereits definiert haben */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, #40E0D0, #FFD580);
}

p {
    margin-left: 1em;
    margin-right: 1em;
    color: white;
    font-size: 1.2em;
}

.stage {
    margin: 20px;
    width: 80%;
}

.stage h2 {
    margin-bottom: 10px;
}

.band-info-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.band-info {
    flex: 1;
    padding: 10px;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    max-width: 90%;
    margin-left: 5%;
}

.previous-band {
    background-color: #FFA07A;
}

.current-band {
    background-color: #32CD32;
}

.next-band {
    background-color: #58D3F7;
}

/* Media Queries für verschiedene Bildschirmgrößen */

/* Kleinere Bildschirme (z.B. Handys) */
@media (max-width: 600px) {
    body {
        flex-direction: column;
    }

    .band-info-container {
        flex-direction: column;
        gap: 5px;
    }

    .band-info {
        margin: 10px 5%;
        text-align: center;
    }
}

/* Mittelgroße Bildschirme (z.B. Tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
    .band-info-container {
        flex-direction: row;
        gap: 20px;
    }

    .band-info {
        padding: 20px;
        max-width: 100%;
        margin-left: 0;
    }
}

/* Größere Bildschirme (z.B. Desktop) */
@media (min-width: 1025px) {
    .stage {
        width: 60%;
    }

    .band-info {
        font-size: 1.4em;
    }

    p {
    margin-left: 25%;
    margin-right: 25%;
    color: white;
    font-size: 1.2em;
}

}
