.howto{
    /*background-color: blueviolet;/**/
    min-height: 80vh;
    width: 80%;
    display: flex;
    flex-direction: column;
    margin: 30px auto;
    color: var(--text-white);
}

.howtoTitle{
    font-weight: bold;
    width: 100%;
    text-align: center;
    font-size: 2em;
    color: var(--titles-white);
    margin-top: 20px;
    margin-bottom: 20px;
}

.howtoSell{
    padding: 20px;
    border-radius: 25px;
    width: 100%;
    text-align: left;
    color: var(--titles-white);
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--products-background);
}

.howtoSellTitle{
    font-weight: bold;
    font-size: 1.5em;
    color: var(--titles-white);
}   

.howtoSellDescription{
    text-align: justify;
    margin-top: 10px;
    color: var(--text-white);
}

.faqQuestion{
    font-weight: bold;
    font-size: 1.2em;
    color: var(--titles-white);
    margin-top: 20px;
}

/*mobile*/
@media (max-width: 768px) {
    .howto{
        width: 100%;
    }
    .howtoSell{
        width: 90%;
    }
    .howtoSellTitle{
        text-align: center;
    }
}