.multiple-choice {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 540px;
}

.choice-block, .choice-block-selected {
    border-radius: 1rem;
    height: 4rem;
    text-align: center;
    line-height: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.choice-block, .choice-block-selected {
    background-color: var(--white);
    color: var(--dark-green);
}

.choice-block-selected {
    background-color: var(--dark-green);
    color: var(--white);
}


.choice-block:hover{
    cursor: pointer;
}

.choice-block:focus-visible {
    cursor: pointer;
    outline-offset: 3px;
}
