You were not using correct CSS declarations to try to change the color. Also, your description has an id of #productDescription1, not the standard #productDescription, so the rule you have will not apply to it anyway.
Code:
/*
.content, #productDescription, .shippingEstimatorWrapper {
font-size: 4.2em;
padding: 0.5em;
}
#productDescription{
font-size: 2em;
margin-top: 0em;
line-height: 1.2em;
alink="blue";
}
*/
Try this:
Code:
#productDescription1 a {
color: #0000ff;
}
#productDescription1 a:visited {
color: #0099ff;
}
#productDescription1 a:hover {
color: #0066ff;
}
#productDescription1 a:active {
color: #00aaff;
}