h1 {
	font-family: 'NewRocker', arial;
	font-weight: normal;
	margin: 0 0 5px 0;
	font-size: 20px;
	color: #e6e2cf;
	margin: 0;
	text-shadow: 0px 0px 3px #000000, 0px 0px 4px #000000, 0px 0px 5px #000000, 0px 0px 6px #000000, 0px 0px 7px #000000;
}

div.container > div.header {
	position: absolute;
	top: 15px;
	z-index: 1;
}

div.container > div.header > div {
	display: flex;
}

div.container > div.header > div > div.logo {
	display: flex;
	width: 60px;
	justify-content: center;
	align-items: center;
}

div.container > div.header > div > div.logo a {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	background-size: 40px;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('/images/logo.png');
	filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 1));
	transition: transform 200ms ease;
}
div.container > div.header > div > div.logo a:hover {
	transform: scale(1.1);
}

div.container > div.header > div > div.headers {
	padding: 7px 0 0 5px;
}

div.container > div.header > div > div.headers span {
	font-family: 'NewRocker', arial;
	font-weight: 500;
	margin: 0;
	font-size: 16px;
	color: #b3b3b3;
	text-shadow: 0px 0px 3px #000000, 0px 0px 4px #000000, 0px 0px 5px #000000, 0px 0px 6px #000000, 0px 0px 7px #000000;
}

a.login {
	position: absolute;
	top: 25px;
	right: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	padding: 0 10px;
	font-size: 14px;
	font-weight: bold;
	line-height: 40px;
	color: #b3b3b3;
	text-decoration: none;
	text-shadow: 0px 0px 3px #000000, 0px 0px 4px #000000, 0px 0px 5px #000000, 0px 0px 6px #000000, 0px 0px 7px #000000;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	cursor: pointer;
	user-select: none;
	z-index: 1;
	transition: 200ms ease;
}
a.login:hover {
	color: #c4c4c4;
	text-shadow: 0px 0px 3px #000000, 0px 0px 4px #000000, 0px 0px 5px #000000, 0px 0px 6px #000000, 0px 0px 7px #000000, 0px 0px 8px #000000, 0px 0px 9px #000000;
}

a.profile {
	position: absolute;
	top: 20px;
	right: 10px;
	display: block;
	align-items: center;
	width: 50px;
	height: 50px;
	background-size: 30px;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('/images/user.png');
	filter: drop-shadow(0 1px 3px #000000);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	cursor: pointer;
	user-select: none;
	z-index: 1;
	transition: 200ms ease;
}
a.profile:hover {
	background-image: url('/images/user-hover.png');
	filter: drop-shadow(0 1px 5px #000000);
}