.choice-container {
  display: flex;
  margin-bottom: 0.5rem;
  width: 90%;
  font-size: 1.em;
  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 {
  text-align: center;
  width: 5rem;
  height: inherit;
  background-color: #56a5eb;
  color: white;
}

.choice-text {
  padding: 0.5rem;
  width: 90%;
}

.correct {
  background-color: #28a745;
}

.incorrect {
  background-color: #dc3545;
}

/* HUD */

#hud {
  padding-top: 6rem;
  display: flex;
  justify-content: space-between;
}

.hud-item{
  margin-right: 10rem;
}

.hud-prefix {
  text-align: center;
  font-size: 1.4rem;
}

.hud-main-text {
  text-align: center;
}

#progressBar {
  border-radius: 0.5rem;
  width: 20 rem;
  height: rem;
  border: 0.3rem solid #56a5eb;
  margin-top: 1.5rem;
}

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

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

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