Change font color of the title

Hello I would like to change the color of the title on the homepage of the Illdy. I tried all suggestions in the previous topics I found here but none of them work.
My site is https://www.burnoutacademy.be
I would love to change the title font and the subtitle to #be8431 but only on the homepage.
Can you help me with this?
Thank you,
Yvi

Hey there

Please add this CSS code in the Appearance > Customize > Additional CSS:

#header .bottom-header h1 {
    color: #ea0a0a;
}

Regards

Thank you! This worked nicely. Unfortunatelly it also changed the color of my blogtitels in this color which was not the purpose because some of them become unreadable in that color. Is there a way to only adjust the title of the main page? Thank you
Kind regards

Hi @yvi

Yes, we can do that, remove that code and use this instead:

.home .bottom-header.front-page .container h1 {
    color: black !important;
}

Regards