.start-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* erlaubt Umbruch bei kleiner Breite */
    text-align: center;
}

/* Wenn der Bildschirm zu klein wird, alle Elemente untereinander */
@media (max-width: 600px) {
    .start-button-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.legend {
    padding: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.index-content h1 {
    text-align: center;
    margin-top: 64px;
    margin-bottom: 48px;
}
