@charset "UTF-8";
/* CSS Document */

<style>
html {
    height: 100%;
}

body {
    background-color: lightblue;
}

a:link {text-decoration: none;
text-decoration-color: blue;
	
}
a:visited {
	text-decoration: none;
    color: blue;
}


a:hover {
	text-decoration: none;
    color: darkred;
}

h1 {
    color: darkblue;
    text-align: center;
	font-size: 24px;
	font-family: verdana;
}

h2 {
    color: darkblue;
    text-align: center;
	font-size: 18px;
	font-family: verdana;
	
}

h3 {
    color: darkblue;
    text-align: left;
	font-size: 16px;
	font-family: verdana;
	
}

p {
    font-family: verdana;
    font-size: 14px;
	
	
}
		
</style>
	