* {
	margin: 0;
	padding: 0;
}

body {
	background-color: blue;
	padding: 3.125% 5.56vh;
}

header {
	border-top: 12px dashed white;
	border-bottom: 12px dashed white;
	padding: 5.56vh 0;
	box-shadow: 1.5625vw 1.5625vw 0 orange;
	background-color: cyan;

}

h1 {
	text-align: center;
	font-family: Helvetica, sans-serif;
	font-style: italic;
	font-weight: normal;
	font-size: 120pt;
	letter-spacing: -0.04em;
	/*text-decoration: underline;
	text-decoration-style: dotted;*/
	background-color: lime;
	color: magenta;
	box-shadow: -1.5625vw 1.5625vw 0 pink;
}

ul {
	border-left: 12px dashed white;
	border-right: 12px dashed white;
	background-color: red;
	font-family: Times, serif;
	font-weight: bold;
	margin-top: 6%;
	padding: 0.5vw 2vw;
	box-shadow: 1.5625vw 1.5625vw 0 purple;
}

li {
	background-color: yellow;
	font-size: 72pt;
	font-weight: normal;
	letter-spacing: -0.04em;
	margin: 4vw 3vw;
	padding: 0.5em 1em;
	box-shadow: 1.5625vw -1.5625vw 0 blue;

}

a:link {
	color: blue;
	background-color: white;
	text-decoration-style: dashed;
}

a:visited {
	color: magenta;
	background-color: white;
	text-decoration-style: dashed;
}

a:hover {
	color: white;
	background-color: blue;
	text-decoration-style: solid;
}

a:active {
	color: white;
	background-color: red;
	text-decoration-style: dashed;
}

/*
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-=-=-=-=-=-=-=-= CURSOR -=-=-=-=-=-=-=-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
*/

body {
	cursor:	url('../img/cursor-128px.png'),
			url('../img/cursor-064px.png'),
			url('../img/cursor-032px.png'),
			pointer;
}