html, body{
	text-align:center;
	background: #1B1B1B;
	color: silver;
	font-family: 'Roboto', sans-serif;
	font-weight: lighter;
}
article{
	width: 800px;
	position: absolute;
	top: 20%;
	left:50%;
	margin-left: -400px;
}
h1{
	font-weight: 300;
	font-size: 40px;
	text-transform: uppercase;
	margin-bottom: 0px;
}
a{
	color: silver;
	font-weight: 300;
	text-decoration: none;
	transition: all .4s ease;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
}
a:hover{
	color: white;
	transition: all .4s ease;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
}