body {
	background-color: red; /* this changes the background to red*/
	border: 1px solid black; /* this gives the black border*/
	font-family: Times New Roman; /* this changes the font-family to Times New Roman*/
	color: blue; /* this changes the font to blue*/
	font-size: 1.5em;/* this uses em instead of px and makes the font size 12*/
	font-weight: heavy;/* this changes the font weight*/
	padding: 5px 12px; /* This adds padding
}
a:link {
	font-family: Verdana, Helvetica, sans-serif;
	color: #800000;
	text-decoration: dashed;
}
a:visited {

	font-family: Verdana, Helvetica, sans-serif;
	color: black;
	font-size: 32px;
	color: #800000;
	text-decoration: none;
}
a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: yellow;/* this uses a researved color word.*/
	text-decoration: none;
	background-color: #800000;

}
a:active {
	font-family: Arial, Helvetica, sans-serif;
	color: #ffffff;
	text-decoration: none;
	background-color: #black;
}
#dog { 
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}


