@mcollie64
For changing the color being used in the footer to white use this css
.footer-info {
background: none repeat scroll 0% 0% rgb(255, 255, 255);
}
For changing text only use this code
.copyright, .site-info {
color: rgb(255, 20, 255);
}
for changing anchor link text color use this
.copyright a, .site-info a {
color: rgb(255, 20, 255);
text-decoration: none;
}
You may want to the rgb values to your particular shade of pink values
hopefully this will help you