It is very important to know how to style your text. Here is how you do it.
First, you can change the font by saying:
selection{
font-family:(name of font family);
}
If you want to find the names of font family's, I would recommend using this.
Also, if you want to center your text, generally in headers, you can just do:
selection{
text-align:center;
}\
Now let's work with links. First, if you want to get rid of the annoying underline, this is how you do it:
selection{
text-decoration:none;
}
And lastly, if you want to have the color change when your mouse hovers on top of the link do:
selection:hover{
color:(color you want to change if the mouse hovers);
}