How to change the heading font color of Multicolumn section in Dawn theme?

I want to change the color of heading below from black to color #fdf8fd:

Here is my store : https://4a7eca-7.myshopify.com/products/period-pain-relief-1

Thanks for helping!

that is very simple my friend.

  1. Go on Online Store < Theme < Customize the theme you want to customize

  2. Click On The Multicolumn Section

  3. Scroll Down & Add this custom CSS

h2{
   color: #fdf8fd
 }

And do this to every section you want to change.

Pls mark as solution if it helped

well your code worked. thank you so much!

I have another question. Can you help me change the type font of multiocolum sections above to Source Sans Pro ?

sure

  1. Go on the theme editor and then the section you want to edit.

  2. Go to custom CSS and place the bellow code in it

h2 {
  font-family: 'Source Sans Pro' !important;
}

hope it helps