@charset "utf-8";

/* reset */
* {margin: 0;padding: 0; border: 0;}
div, header, footer, aside, section, nav {display: block;}

/* fonts */
@font-face {
	font-family: JosefinSans;
	src: url('../fonts/JosefinSansStd-Light.otf');
}
@font-face {
	font-family: OpenSans;
	src: url('../fonts/OpenSans.woff');
}
@font-face {
	font-family: Quicksand;
	src: url('../fonts/Quicksand.woff');
}
@font-face {
	font-family: BlackJack;
	src: url('../fonts/blackjack.woff');
}
@font-face {
	font-family: MavenProLight;
	src: url('../fonts/MavenProLight-300.otf');
}
@font-face {
	font-family: Archive;
	src: url('../fonts/Archive.otf'); /** AMPERSAND **/
}
@font-face {
	font-family: Frontage;
	src: url('../fonts/Frontage.otf'); /** borders only **/
}
@font-face {
	font-family: Metropolis;
	src: url('../fonts/Metropolis.otf'); /** borders only -- crisscrossed **/
}
@font-face {
	font-family: SketchyBold;
	src: url('../fonts/SketchyBold.woff'); /** CODE **/
}
@font-face {
	font-family: SketchyRegular;
	src: url('../fonts/SketchyRegular.woff'); /** DESIGN -- sketchy **/
}
@font-face {
	font-family: Pinstripe;
	src: url('../fonts/Pinstripe.ttf'); /** borders only -- fat **/
}
@font-face {
	font-family: Weston;
	src: url('../fonts/Weston.otf'); /** DESIGN **/
}

/* elements */
html, body {
	overflow-x: hidden;
	margin: 0;
	min-height: 100%;
	height: 100%;
	font-family: Helvetica, sans-serif;
}

/** MENU **/

menu {
	position: absolute;
	bottom: 1%;
	right: 1%;
	z-index: 20;
}
menu a {
	-moz-transition: all .3s ease;
	text-decoration: underline;
	color: #000;
	outline: none;
	display: none;
}
menu a:last-child {color: #fff;}
menu a.active {display: inline;}
menu a:hover {opacity: .5;}

/** VERSUS **/

#versus {
	position: relative;
	top: 50%;
	margin-top: -175px;
	height: 350px;
	width: 100%;
	margin-left: 15%;
}
#versus * {
	float: left;
}
#versus .item {
	position: relative;
	width: 30%;
	height: 350px;
	outline: none;
}
#versus .item img {
	max-width: 100%;
	max-height: 100%;
	bottom: 0;
	top: 0;
	right: 0;
	left: 0;
	position: absolute;
	margin: auto;
}
#versus .vote {
	position: relative;
	z-index: 1;
	display: block;
	width: 60px;
	height: 60px;
	left: 50%;
	top: 50%;
	margin-left: -30px;
	margin-top: -30px;
	text-align: center;
	line-height: 60px;
	border-radius: 30px;
	background-color: #000;
	font-size: 2rem;
	color: #fff;
	opacity: 0;
	-moz-transition: opacity .3s ease;	
}
#versus .item:hover .vote {
	opacity: .9;
}
#versus .score {
	position: relative;
	z-index: 1;
	display: block;
	width: 90px;
	height: 90px;
	left: 50%;
	top: 50%;
	margin-left: -45px;
	margin-top: -45px;
	text-align: center;
	line-height: 90px;
	border-radius: 45px;
	background-color: #000;
	font-size: 2rem;
	opacity: .9;
	color: #fff;
}
#versus h1 {
	width: 10%;
	height: 350px;
	line-height: 350px;
	text-align: center;
	font-family: MavenProLight;
	font-size: 3rem;
}

/** SKIP **/

#skip {
	text-decoration: none;
	position: relative;
	display: block;
	width: 100px;
	left: 50%;
	text-align: center;
	margin-left: -50px;
	top: 375px;
	color: #000;
	font-size: 1.2rem;
	outline: none;
}

/** NEW **/

#new {
	overflow: hidden;
	z-index: 10;
	position: absolute;
	height: 100%;
	width: 0;
	background-color: #000;
	top: 0;
	right: 0;
	-moz-transition: width .2s ease;
}
#new.active {width: 300px;}

#new form {
	position: relative;
	left: 50px;
	top: 50px;
}
#new input {
	height: 40px;
	width: 200px;
	margin-bottom: 25px;
}
#new input[type=text] {
	padding: 0 10px;
	width: 180px;
}
#new input[type=submit] {
	cursor: pointer;
	background-color: #ddd;
}