/* Allgemeine Stile */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #252525; /* Dunkelgrauer Hintergrund */
    color: #ffffff;
}

/* Container */
.container {
    text-align: center;
}

/* Überschrift */
h1 {
    color: white;
    margin-bottom: 2rem;
    font-size: 60px
}

/* Fortschritts-Bereich */
.progress-container {
    width: 60%;
    margin: 0 auto;
}

.progress-bar {
    background-color: #555555; /* Mittelgrauer Hintergrund */
    height: 20px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}

.progress {
    width: 30%; /* Fortschritt auf 30% */
    height: 100%;
    background-color: #40e0d0; /* Türkis-blauer Farbton */
    transition: width 0.5s ease-in-out;
}

/* Fortschritts-Beschriftungen */
.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #aaaaaa; /* Heller Grauton */
}

.progress-labels span {
    text-align: center;
}
