body{
	font-family: 'Lato', sans-serif;
	font-weight: 300;
}

.container{
	margin: 0 auto;
	width: 100%;
}

header{
	text-align: center;
	margin: 40px 0 30px 0;
}

.logo{
	width: 20vh;
	height: 20vh;
	display: block;
	background-color: #000;
	border-radius: 50%;
	color: #fff;
	line-height: 19vh;
	font-size: 8vh;
	margin: 0 auto;
}

.handle{
	margin: 16px 0;
	font-size: 1.2em;
	text-transform: uppercase;
	display: block;
	font-weight: 400;
	letter-spacing: 0.04em;
}

.links{
	list-style-type: none;
	margin: 0px auto;
	padding: 0;
	width: 300px;
	display: block;
}

.links li {
	margin-bottom: 8px;
}

.links li a{
	text-transform: uppercase;
	color: #000;
	border: 2px solid #000;
	display: block;
	text-align: center;
	padding: 8px;
	font-weight: 400;
	letter-spacing: 0.04em;
	transition: background-color linear 0.3s;
}

.links li a:hover, .links li a:focus{
	background-color: rgba(0,0,0,0.25);
	text-decoration: none;
}