html {
	background: #000 url('/img/home_bg.jpg') no-repeat center center fixed;
	background-size: cover;
}

a {
	text-decoration: none;
	color: #efa747;
}
a:hover {
	text-decoration: underline;
}
input, select, textarea {
	font-family: 'Sansation', sans-serif;
	font-size: 0.8em;
}
body {
	font-family: 'Sansation', sans-serif;
	letter-spacing: 0.03em;
	color: #fff;
}

/* STYLES NEEDED FOR ALL SITES */
header, footer {
	background-color: transparent;
}
		.header_button:hover {
			background-color: rgba(0,0,0,0.3);
		}
	nav {
		background-color: transparent;
	}
	.nav_on {
		box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
	}
		.nav {
			transition: height 0.5s ease-in-out, background-color 0.5s linear;
			background-color: rgba(29,49,66,0);
		}
		.nav_on .nav {
			background-color: rgba(29,49,66,1);
		}
		.nav_on .nav:not(:last-of-type) {
			border-bottom: 1px solid #4f594f;
		}
		.nav_on .nav:hover {
			box-shadow: inset 0 0 1em rgba(64,79,97,0.5);
		}
	.header_dropdown {
		background-color: #bfc8bf;
		color: #4c544c;
	}
	.header_on #user_button {
		background-color: #c3c3c3;
	}
	.user_nav {
		color: #2c2c2c;
	}
	.user_nav:hover {
		background-color: #2c2c2c;
		color: #efa747;
		text-decoration: none;
	}
.msg {
	text-align: center;
	background-color: rgba(10,15,20,0.5);
	padding: 3em;
	border-radius: 1em;
	margin: 0 10% 1.5em 10%;
	position: relative;
}
	.msg_title {
		font-size: 1.5em;
	}
	.msg_content {
		margin-top: 1em;
		font-size: 1.1em;
	}

/* HOME STYLES */
header {
	margin: 1.5em 0;
}
	div.header_buttons_error div#search_wrapper {
		right: 0;
	}

#main, #header {
	max-width: 48em;
}
#main {
	position: relative;
	overflow: hidden;
	/*background-color: rgba(32,29,26,0.5);*/
	text-align: center;
}
	
	h1 {
		text-align: center;
		font-size: 1.5em;
		position: relative;
		text-shadow: rgba(0,0,0,1) 0px 0px 6px;
		margin: 0 14%;
	}
	h2 {
		text-align: center;
		font-size: 1.2em;
		margin: 1em 11% 0 11%;
		position: relative;
		text-shadow: rgba(0,0,0,1) 0px 0px 6px;
		color: #d2a692;
	}
	#tiles {
		width: 100%;
		margin: 2em 0;
	}
		.tile {
			height: 18em;
			width: 15em;
			position: relative;
			margin: 0.5em;
		}
		.tile a {
			height: 100%;
			width: 100%;
			position: relative;
			display: flex;
			flex-direction: column;
			align-items: center;
			border-radius: 1em;
			box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
		}
	#quinfall_tile a {
		background-image: url('/img/quinfall_tile.jpg');
		background-size: 160%;
		background-position: bottom center;
		transition: background-size 4s ease-in-out;
	}
	#quinfall_tile a:hover {
		background-size: 110%;
	}
		#quinfall_tile img {
			position: relative;
			width: 75%;
			height: auto;
			margin-top: auto;
			margin-bottom: 1em;
		}
	#starcraft_tile a {
		background-image: url('/img/starcraft_tile.jpg');
		background-size: 140%;
		background-position: top center;
		transition: background-size 4s ease-in-out;
	}
	#starcraft_tile a:hover {
		background-size: 100%;
	}
		#starcraft_tile img {
			position: relative;
			width: 75%;
			height: auto;
			margin-top: auto;
			margin-bottom: 1em;
		}
footer {
	line-height: 1.5em;
}
input.form_button {
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.8em;
	border: 1px solid transparent;
	background-color: #c4c4c4;
	box-shadow: 0px 10px 13px -2px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
}
	input.form_button:hover {
		background-color: #e0e0e0;
	}
@media (max-width:700px) {
	.tile {
		height: 13.5em;
		width: 11.25em;
	}
}