body{
    font-family: 'Quicksand', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }


  .container.startinfos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.li{
    color: #333333;
    font-size: 24px;
}

.logo{
    max-width: 100px;
    width: 50px;
    height: auto;
}

.progress{
    height: 30px;
    width: 100%;
    background-color: #e9ecef;
    border-radius: 0;
    margin: 0;
}
.progress-bar{
    background: linear-gradient(270deg, #89fa6f, #2ede36, #c8f765);
    border-radius: 0 15px 15px 0;
    font-size: 1rem;
    font-weight: bold;
    text-align: end;
    padding: 10px;
    animation: moveGradient 5s ease infinite, changeRadius 5s ease forwards; /*Farbverlauf*/
    transition: width 1s ease; /*Fließeffekt */
    box-shadow: 0 0 5px rgba(18, 220, 0, 0.295);

}


/* Keyframes für die Gradient-Bewegung des Balkens*/
@keyframes moveGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }


.quizcontainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: auto;
    background-color: #edf7fb;
    border-radius: 15px;
    padding: 0

}

#quiz{
    position: relative;
    width: 90%;
    max-width: 500px;
    height: auto;
    background-color: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 15px;
}

/*Sportnavi ist Container von Lexikonbutton*/

#sportartenListe > ul{
    list-style-type: none;
}

.sportnavi{
    position: absolute;
    right: 12vw;
    top: 10vh;
    max-width: 20px;
    text-wrap: wrap;
}

.lexikonbutton{
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}




/*Buttons*/

.weiter{
background-color: #81C784;
color: white;
}
.weiter:hover{
    background-color: #64dc6a; 
    color: white;
}

/*Positionierung*/
.neustart{
    position: absolute;
    top: 0;
    right: 0;
    margin:0;
    
}

/*neustarten Button design*/

.restart{
    opacity: 60%;
    padding: 3px;
    border-radius: 0px 15px 0 8px;
}
.restart:hover{
    opacity: 100%;

}

/*zurück Butto Lexikon*/

.lexikon-escape{
    position: absolute;
    top: 15vh;
    left: 50px;
}
