Best Option for you if you just want to remove the underline from anchor link only-
#content a {
text-decoration-line:none;
}
This will remove the underline.
Further, you can use a similar syntax for manipulating other styles too using-
text-decoration: none;
text-decoration-color: blue;
text-decoration-skip: spaces;
text-decoration-style: dotted;
Hope this helps!
P.S.- This is my first answer ever!