I forgot to mention in my earlier posts, that you can also take out:
Code:
font-family: "Verdana", "Helvetica", sans-serif;
out of every H# and P declaration and add it to the body, like so:
Code:
body {
background-color: #000000;
font-family: Verdana, Helvetica, sans-serif;
}
This will ensure that anything INSIDE the body has the same font. You also may not need quotes around your FONT names if there are no spaces or special characters inside (with the exception of commas and quotes). Save TYPING or redundant declarations. It will save you time in the future.