.true-false-widget .sentence-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-container.true-false {
    flex-direction: unset;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-container.true-false button {
    width: 49%;
}

.btn-container.true-false button.open-help-modal {
    width: 100%;
}

.true-false-widget .btn-container button.true {
    background: #33691e;
}

.true-false-widget .btn-container button.true:hover {
    background: #33691e;
    color: #000;
}

.true-false-widget .btn-container button.false {
    background: #c36;
    color: #fff;
}

@media only screen and (max-width: 400px) {
    .btn-container.true-false button {
        width: 47%;
    }
}