/* choice formatting */
.choice-container {
  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;
  transform: translateY(-0.1rem);
  transition: transform 150ms;
}

.choice-prefix {
  padding: 1.5rem 2.5rem;
  background-color: orange;
  color: white;
}

.choice-text {
  padding: 1.5rem;
  width: 100%;
}

.right {
  background-color: green;
}

.wrong {
  background-color: red;
}




/* hud formatting */
#hud {
  display: flex;
  justify-content: space-between;
}

.hud-prefix {
  color: orange;
  text-align: center;
  font-size: 2rem;
}

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


/* progressBar formatting */
#progressBar {
  width: 20rem;
  height: 4rem;
  border: 0.3rem solid orange;
  margin-top: 1.5rem;
}

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