Customise Font Colour in Parallax sections

Hi! I am using parallax sections on my front page. How can I customise font colour in different sections?
eg 1st parallax section = black text over light image, 2nd section = white text over dark image

Site - millparkbaptistchurch.net/sandpit

Thanks!!

Hello there,

I hope you are doing well today.

You can use the following CSS code to change the colors by going to Appearance > Customize > Additional CSS and pasting it there.


.top-parallax-section h1 {
    color: red;
}

div#shapely_home_parallax-3 h1 {
    color: black;
}

div#shapely_home_parallax-4 h1 {
    color: pink;
}

div#shapely_home_parallax-6 h1 {
    color: green;
}

Best Regards,
Support