/*This first part is to set the font style, color and size of your text, as well as the background color of the page */ 

body { 
color: #000099; 
} 

/*This changes the headings, you can alter the size font type, and the color of these */ 

h1 { color: #000099;} 
h2 { color: #000099;} 
h3 { color: #000099;} 

/*This affects how your links look. At the moment, they show as blue, and underlined. They change to red text when the pointer passes over them */ 

a:visited { 
color: #306df7;
}

a:hover { 
color: #F70C0C; 
} 
