h1 {color:black;
font-size: 60px;}

h2 {color:black;}
body{background-color:lightgreen;
font-size: 50px;}


h3 {color:black;
font-size: 40px;}

h4 {color:black;
font-size: 50px;}

/*I adjusted the font size here of the links because initially they were scaling with the headers */
a{ font-size:30px;
	text-decoration: none;}

/*The default color of the link before being clicked on*/
a:link{color:blue}

/*After clicking the link it will turn red  */
a:visited{color: red}

/*WHen you highlight with your cursor the text turns white and then the background color goes gray */
a:hover{color:white;
background-color: #505050;}
/* After clicking it the text will turn yellow*/
a:active{ color: yellow;}


