Im trying to change the font color in the section text columns with images - debut theme

Hey there! Ive changed the back ground of the section text columns with images by using the code below, but I cant seem to find out how to make the headline, product text and button text white.

My site is: https://nativity-corner.myshopify.com/

The code I used to change background:

#shopify-section-feature-columns {
background: #74497f;
font color: #fff;
}

Hello @ZipporahMonique ,

Please share store password .

Thanks

Oh yes,

chaklu

Us this css

#shopify-section-feature-columns {
    background: #74497f;
    color: #fff;
}
#shopify-section-feature-columns .rte-setting p {
    color: #fff !important;
}
#shopify-section-feature-columns .btn.btn--secondary.btn--small {
    color: #fff;
    border-color: #fff;
}

Worked Perfectly! Thank you!

One other thing, how do I change the font design throughout the website?

To changes font design:
a) Check your theme settings maybe there an option is available to change it.
b) There is app available to implement the custom font you need, you can check in app store.

c) Select the fonts which you want and implement them manually. You can can find in community other posts how to implement fonts manually.

Thanks