.question-container{
    display: flex;
    margin-bottom: .8rem;
    width: 50%;
    background-color: black;
    border: .1rem solid #f8d106;
    border-radius: 8px;
    margin: auto;
    margin-bottom: 0.5rem;
    margin-top: 4rem;
}
#question{
    color: #f8d106;
    font-size: 3rem;
    padding: .4rem;
    text-align: justify;
}
.choice-container {
    display: flex;
    margin-bottom: 0.5rem;
    width: 30%;
    font-size: 2rem;
    border: 0.1rem solid black;
    border-radius: 30px;
    background-color: #f8d106;
    margin: auto;
    justify-content: center;
    margin-bottom: 1rem;
}

.choice-container:hover {
    cursor: grab;
    box-shadow: 0 0.4rem 1.4rem 0 #f8d106;
    transform: translateY(-0.1rem);
}

.choice-container:active {
    cursor: grabbing;
}

.choice-text {
    padding: 1.5rem;
    width: 100%;
    text-align: center;
    font-style: bold;
    color: black;
} 

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

.incorrect{
    background-color: #dc3545;
}

#hud {
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
    align-items: center;
    
}

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

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

#progressBar{
    width: 20rem;
    height: 4rem;
    border: 0.3rem solid #f8d106;
    margin-top: 1.5rem;
}

#progressBarFull{
    height: 3.4rem;
    border:0.2rem solid black;
    background-color: #f8d106;
    width: 0%;
}
.timer{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;

}

#timer-count{
    font-size: 3rem;
    font-weight: bold;
    padding: .5rem;
    -webkit-text-fill-color: black;
    -webkit-text-stroke: 1px #f8d106;

 }
