How can I alter the text color on my website to AC3834?

Hello,

I need help with changing the text color of this section (including the red more button) to AC3834. My website is wowberrybites.com

Thank you!

Try adding this code to the bottom of base.css

/* description color */
.page-width.page-width--narrow.section-template--15612304883861__1652480227190eb28c-padding .rte p {
  color:#AC3834;
}

/* title color */
.page-width.page-width--narrow.section-template--15612304883861__1652480227190eb28c-padding h2{
  color:#AC3834;
}
/* button color */
.color-background-1.gradient .page-width.page-width--narrow.section-template--15612304883861__1652480227190eb28c-padding .rte .btnreadmore {
  background-color:#AC3834 !important;
}

Result:

Thank youu!