.questionSection {
    width: 98vw;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    margin-top: 15px;
    gap: 30px;
}

.questionCard {
    background-color: var(--grey);
    width: 80%;
    border-radius: 10px;
    padding: 20px 5vw;
    cursor: pointer;
    transition: all 200ms ease;
}

.questionCard:hover {
    background-color: var(--black-grey);
}

.questionTitle>*,
.questionContent>* {
    color: var(--white);
    font-size: 17px;
}

.questionTitle {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    font-weight: bolder;
}

.questionTitle>p {
    width: 95%;
    text-wrap: balance;
}

.questionContent {
    display: none;
    font-weight: 300;
    margin-top: 10px;
}