How can I change Footer background color?

Hi there! Is there a way to change the footer background color and font color? Thank you in advence

Hello there,

I hope you are doing well today.

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


/Footer BG and font color*/
.bg-dark {
    background: red;
}

.footer .footer-credits {
    color: black;
}

Best Regards,
Support