.choice-container {
    display: flex;
    margin-bottom: 0.8rem;
    width: 100%;
    border-radius: 4px;
    background: gray;
    font-size: 20px;
    min-width: 20rem;
}

.choice-container:hover {
    cursor: pointer;
    transform: scale(1.02);
    transform: transform 100ms;
}

.choice-text {
    padding: 15px;
    width: 100%;
    font-size: 20px;
}

.correct {
    background: rgb(88, 153, 165);
}

.incorrect {
    background: rgb(88, 153, 165);
}

.question-text {
    font-size: 20px;}