.quiz-game.questions-holder {
    background: none;
    height: 425px;
    align-content: center;
    justify-content: center;
}

.quiz-game .question-title {
    color: black;
}
.quiz-game .finished-badge .question-title {
    color: rgb(0,177,159);
    margin: 0;
}

.quiz-game .answers {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    width: 75%;
}

.quiz-game .answer {
    border-radius: 5px;
    background-color: rgb(248, 248, 248);
    margin-block-end: 1.5rem;
    font-size: 16px;
    text-align: center;
    color: black;
    padding: 10px 20px;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    box-shadow: none;
}

.quiz-game .answer img {
    height: 1.5rem;
}

.quiz-game .answer.right-answer {
    background-color: var(--good-answer-color);
    color: white;
}

.quiz-game .answer.right-answer-border {
    border: 5px solid var(--good-answer-color);
    padding: 5px 15px;
}

.quiz-game .answer.wrong-answer {
    background-color: var(--wrong-answer-color);
    color: white;
}

.quiz-game .finished-badge {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
