/* Will change the color of a not visited link to #FFBD00 and a visited link to #FFFFFF
*/

a:link{color:#FFBD00;}
a:visited{color:#FFFFFF;}

/* will change the background color to #003B12, the font to arial, the font color to #FFBD00 and the font size to 18 px
*/

body{background-color:#003B12;font-family:arial;color:#FFBD00; font-size:18px;}

/* will change heading 1 to #FFBD00, the font to arial black, the font size to 48px, the alignment to center and the font weight to bold
*/

h1{color:#FFBD00; font-family:arial black; font-size:48px; text-align:center;}

h2{color:#FFBD00; font-family:arial black; font-size:30px; text-align:center;}

/* will change the color of the horizontal rule to #FFBD00
*/

hr{color:#FFBD00;>
