.choice-container {
    display: flex;
    margin-bottom: 0.5rem;
    width: 100%;
    font-size: 0.9rem;
    border: 0.1rem solid #3c5a97;
    background-color: white;
}

    .choice-container:hover {
        cursor: pointer;
        box-shadow: 0 0.4rem 1.4rem 0 #3c5a97;
        transform: translateY(-0.1rem);
        transition: transform 150ms;
    }

.choice-prefix {
    padding: 1.5rem 2.5rem;
    background-color: #3c5a97;
    color: white;
}

.choice-text {
  padding: 1.5rem;
  width: 100%;
}

.correct {
  background-color: #28a745;
  color:white;
}

.incorrect {
  background-color: #dc3545;
  color:white;
}

/* HUD */

#hud {
  display: flex;
  justify-content: space-between;
}

.hud-prefix {
  text-align: center;
  font-size: 1.5rem;
}

.hud-main-text {
  text-align: center;
}

#progressBar {
    width: 12rem;
    height: 2rem;
    border: 0.1rem solid #3c5a97;
    margin-top: 0rem;
    margin-bottom: 1.5rem;
}

#progressBarFull {
    height: 1.8rem;
    background-color: #3c5a97;
    width: 0%;
}

/* LOADER */
#loader {
    border: 1.6rem solid white;
    border-radius: 50%;
    border-top: 1.6rem solid #3c5a97;
    width: 12rem;
    height: 12rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

p{
    margin-bottom:0;
}