body {
	background: LightSlateGrey;
}
h1 {
	background-color: LightSteelBlue;
	font-family: arial;
	font-size: 300%;
	text-align: center;
	border: 2px solid Azure;
	color: white;
	margin: 20px;
	padding: 30px;
}
h2 {
	background-color: LightSkyBlue;
	font-family: arial;
	font-size: 200%;
	text-align: left;
	border: 2px solid Azure;
	color: white;
	margin: 10px;
}
div {
	background-color: LightBlue;
	font-family: courier;
	font-size: 20px;
	text-align: left;
	border: 2px solid Azure;
	color: black;
	margin: 20px;
	padding: 30px;	
}
p {
	background-color: LightBlue;
	font-family: courier;
	font-size: 20px;
	text-align: left;
	border: 2px solid Azure;
	color: black;
	margin: 20px;
	padding: 30px;
}
address {
	background-color: LightSlateGrey;
	font-family: courier;
	font-size: 100%;
	text-align:left;
	border: 2px solid Azure;
	color: white;
}

/* Table Styling */
td, th {
	background-color: LightBlue;
	border: 3px solid Azure;
	text-align: left;
	padding: 10px;
	border-radius: 10px;
	border-style: inset;
}
table {
	margin: 20px;
	padding: 10px;
	border: 2px solid Azure;
	color: black;
	border-radius: 10px;
}

/* Links styling */
a:link {
	color: blue;
	background-color: transparent;
	text-decoration: none;
}
a:visited {
	color: blue;
	background-color: transparent;
	text-decoration: none;
}
a:hover {
	color: blue;
	background-color: transparent;
	text-decoration: none;
}
a:active {
	color: blue;
	background-color: transparent;
	text-decoration: none;
}




