2
as it is the links appear blue and on hover they do not seem to change. try adding something like the following to your css, you will just need to edit it.
a {
color: #000;
text-decoration: underline;
a:hover {
color: #fff;
text-decoration: underline;
}
a:visited {
color: #fff;
text-decoration: underline;
}