Color change of slider text and links

Hi

I´m trying a way of changing the color of the text in the slider and the links in all the page. (www.spotlightech.es)

In the slider would like to make the text darker to see it better, (actually in white)

And in all the titles of the posts when you hover with the mouse (and when you put a link in the text) it always appears in yellow.

Can I change it in a menu?

If not, where is the css code (in the code editor) to change it?

Thank you very much

Hey there,
Hope you’re doing well today

In order to make these changes, you’ll need to add and save the following CSS to Appearance > Customize > Additional CSS:

/*Change the color of the text in the slider*/
.flex-caption h2 {
    color: #ccc;
}

/*Change the color of the text in the slider on hover*/
.flex-caption h2:hover {
    color: #ccc;
}

/*Change post title hover color*/
h2.entry-title a:hover {
    color: #999!important;
}

Note that you may change the colors to any color you’d like.

Please let me know if this helps, and if there are any other issues that I may assist you with.

Best Regards,
Support