.choice-container {
    justify-content: center;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem;
  display: flex;
  margin-bottom: 0.5rem;
  width: 100%;
  font-size: 1.8rem;
  border: 0.1rem solid rgb(86, 165, 235, 0.25);
  background-color: white;
}
.choice-container:hover {
  cursor: pointer;
  box-shadow: 0 0.4rem 1.4rem 0 rgba(86, 185, 235, 0.5);
  transform: translateY(-0.1rem);
  transition: transform 150ms;
}

.choice-prefix {
  display: flex;
  padding: 10px;
  background-color: #56a5eb;
  color: white;
  margin: 10px;
}

.choice-text {
  display: flex;
  padding: 0.8rem;
  width: 100%;
}

.correct {
  background-color: green;
}
.incorrect {
  background-color: red;
}

#hud{
  display: flex;
  justify-content: space-around;
}
.hud-prefix {
  text-align: center;
  font-size: 2rem;
}
.hud-main-text{
  text-align: center;
}
#progressBar{
  width: 20rem;
  height: 4rem;
  border: 0.3rem solid #56a5eb;
  margin-top: 1.5rem;

}
#progress-bar-full{
  height: 3.4rem;
  background-color:#56a5eb;
  width: 0%;


}
h2{
  display: flex;
  text-align: center;
  justify-content: center;
}


#loader {
  border: 1.6rem solid white;
  border-radius: 50%;
  border-top: 1.6rem solid #56a5eb;
  width: 12rem;
  height: 12rem;
  animation: spin 2s linear infinite;
}

.load-div{ width: 14rem;

  margin: auto;
  margin-top: 12rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
