Cant seem to control link color

Man, i must be really rusty but I can not figure out why when I put this code in my css, the links on the site remain blue and purple (default)

a{
    font-color:#000;
    text-decoration:none;
}
a:hover{
    font-color:#cd7b29;
    text-decoration:underline;
}

Link to web site with issue

Man thanks,
Houston

It should just be “color”, rather than “font-color”:

a{
    color:#000;
    text-decoration:none;
}
a:hover{
    color:#cd7b29;
    text-decoration:underline;
}

Oh Crap . . Way too late I guess. LOL

Thanks for not giving me a hard time on that one.

I’d be too much of a hypocrite, as I make mistakes like that all the time. :blush: