h1 {
	color: purple;
	background-color: #a96;
	font-family: "Times New Roman", serif;
	font-size: 67px;
	text-decoration: overline; /*also underline, line-through*/
}

h2 {
	font-size:1.5em;
	background-color:#ccc;
	margin: 20px;
	padding: 40px;
	/*margin and padding can be customized top, right, bottom, left*/
}

a {
	color: lime;
	font-size: 2em;
	text-transform: uppercase; /*also lowercase, capitalize and none*/
	font-weight: bold; /*also comes in normal*/
	
}

body {
	font-size:14px;
	color: white;
	background-color: black;
	font-style: italic;
	/*the other font style is normal*/
}

option {
	font-variant: small-caps;
}

p {
	letter-spacing: 0.5em;
	word-spacing: 2em;
	line-height: 1.5;
	text-align: center;
}