Hi @neobrainless,
For menu text color, try following code in Appearance=> Customize=> Additional CSS box:
.main-navigation a {
color: #000000;
}
.main-navigation .menu-item-has-children a {
color: #ffffff;
}
You can change #000000 and #ffffff to any color you want.
First block changes the main color, second block changes sub menu item color.
For footer copyright, try following code:
.site-info {
background-color: #ffffff;
color: #000000;
}
.site-info a {
color: #e8554e;
}
.site-info a:hover,
.site-info a:focus {
color: #cccccc;
}
Let me know how it goes.
Regards,
Pratik