html{
	font-family: Arial;
	background-color: #141414;
	color: white;
}

h1{
	font-size: 60px;
	text-shadow: 5px 5px 5px #545454;
}

.title {
	text-align: center;
	margin-top: 100px;
	margin-left: 200px;
	margin-right: 200px;
}

/* unvisited link */
a:link {
  color: yellow;
	font-size: 200%;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}