html {
	background: #000 url('/img/home_bg.jpg') no-repeat center center fixed;
	background-size: cover;
}

a {
	text-decoration: none;
	color: rgb(var(--orange3));
}
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_home {
		padding: 0.5em 0.7em;
		z-index: 5;
		transition: margin-left 0.5s ease-in-out;
		margin-left: 0;
	}
	#nav_home.nav_on {
		margin-left: 2.5em;
	}
	#nav_home span {
		display: inline-block;
	}
	nav {
		top: 0;
		left: 0;
		padding-top: 3em;
		border-radius: 0.5em;
		border: 1px solid rgba(245, 236, 228, 0.3);
		background-color: rgb(46,67,80);
		flex-direction: column;
		box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
	}
		.nav {
			padding: 0.8em;
			display: flex;
			border: 0.1em solid rgb(46,67,80);
		}
		.nav:hover {
			background-color: rgb(37 56 69);
		}
		.nav a {
			color: #fff;
		}
		.nav a:hover {
			text-decoration: none;
		}
			.nav_site {
				font-weight: bold;
				width: 6em;
				min-height: 6em;
			}
			.nav:hover .nav_site {
				color: rgb(var(--orange3));
			}
				.nav_site span {
					display: block;
					position: absolute;
					left: 7em;
					top: 0;
					z-index: 5;
					width: max-content;
				}
				.nav_site_img {
					height: 100%;
					background-size: cover;
				}
			.nav_tools {
				line-height: 1.2em;
				padding: 1.3em 0 0 1em;
			}
				.nav_tool {
					font-size: 0.85em;
					display: inline-block;
					float: left;
					clear: left;
				}
					a.nav_tool:hover {
						color: rgb(var(--orange3));
					}
		.nav:last-child {
			border-radius: 0 0 0.5em 0.5em;
		}
	
	.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: 1em 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: rgb(var(--orange5));
	}
	#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;
	}
}