@charset "utf-8";

/*BFUPD*/

html,body {
	width: 100%;
	height: 100%;
	font-family: 'Raleway', sans-serif;
	background: black url(../bfupd/static/menu_bg.png) repeat;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	display: table;
}

a {
	text-decoration: none;
	color: white;
	text-shadow: 0px 0px 15px black;
	-webkit-transition: all 0.3s !important;
    transition: all 0.3s !important;
}

#a_light:hover {
	text-shadow: 0px 0px 15px #15D93A;
}

#a_dark:hover {
	text-shadow: 0px 0px 15px red;
}

logo {
	font-size: 225px;
}

.select {
	width: 50%;
	height: 50%;
	vertical-align: bottom;
	display: table-cell;
	padding-bottom: 50px;
	font-size: 50px;
	letter-spacing: -5px;
	line-height: 130%;
	text-align: center;
	text-transform: uppercase;
}

#light {
	background: #15D93A url(../bfupd/static/luke.jpg) no-repeat;
	background-size: cover;
	background-position: 50% 0%;
	filter: grayscale(100%) saturate(100%);
	-webkit-filter: grayscale(100%) saturate(100%);
	border: 25px solid black;
	border-right: 15px solid black;
	-webkit-transition: all 0.3s !important;
    transition: all 0.3s !important;
}

#light:hover {
	filter: grayscale(0%) saturate(180%);
	-webkit-filter: grayscale(0%) saturate(180%);
}

#dark {
	background: red url(../bfupd/static/vader.jpg) no-repeat;
	background-size: cover;
	background-position: 45% 0%;
	filter: grayscale(100%) saturate(100%);
	-webkit-filter: grayscale(100%) saturate(100%);
	border: 25px solid black;
	border-left: 15px solid black;
	-webkit-transition: all 0.3s !important;
    transition: all 0.3s !important;
}

#dark:hover {
	filter: grayscale(0%) saturate(180%);
	-webkit-filter: grayscale(0%) saturate(180%);
}