body {
	background-color: linen;
}

h1 {
	color: maroon;
	font-family: "Times New Roman";
	font-size: 32px;
	text-shadow: 2px 2px 5px green;
}

p {
	font-family: "Times New Roman";
	font-size: 24px;
}

ul {
	list-style-type: square;
}

/* links */

a {
	font-family: fantasy;/*sans-serif;/*Cursive*/;
	font-size: 22px;
}

a:link {
	color: blue;
}

a:visited {
	color: SlateBlue/*violet/*magenta*/;
}

a:hover {
	background-color: LightGrey;
	font-size: 24px;
}

/* links represented by images */

a img {
	filter: blur(2px);
}

a img:hover {
	filter: blur(0);
}

/* submit button */

input[type=submit] {
	background-color: green;/*LightGreen;*/
	color: white;
	padding: 12px 16px;
	/*text-decoration: none;*/
	margin: 4px 2px;
	font-size: 24px;
}

