body { 
	font-family: 'Helvetica-Neue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	text-align: center;
	background-color: #152129;
	color: #ffda8a;
	margin: 0;
}

a, a:visited {
	color: #ffda8a;
	text-decoration: none;
}

nav {
	position: absolute;
	width: 100%;
	z-index: 300;
	bottom: 0;
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 3px;
}

	nav ul {
		list-style-type: none;	
		margin: 0;
		padding: 0;	
	}
	
		nav ul li {
			float: left;
			width: 33.33%;	
		}
		
			nav ul li a {
				padding: 15px 0 15px 3px;
				display: block;
				text-transform: uppercase;
				border: 3px solid #ffda8a;
				border-left: none;
			}
			
				nav ul li:first-child a {
					border-left: 3px solid #ffda8a;
				}
				
				nav ul li a:hover {
					background-color: #ffda8a;
					color: #152129; 
					font-weight: 700;
				}
	
.overlay {
	position: absolute;
	z-index: 200;
	width: 100%;
	height: 100%;
	font-family: 'Merriweather', serif;
	font-weight: 700;
	font-size: 38px;
	text-align: center;
	background-color: rgba(19,33,42,0.95);
	display: none;
}	

	#contact.overlay {
		font-size: 22px;
		text-align: center;
	}
	
	#release.overlay {
		text-align: center;
	}

	.overlay a {
		display: inline-block;
		border-bottom: 3px solid rgba(255, 218, 139, 0.2);
		padding-bottom: 4px;
		margin-bottom: 20px;
	}
	
	.overlay a:hover, .overlay a:active {
		border-bottom: 3px solid rgba(255, 218, 139, 1);
	}

	.overlay p {
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
		margin: 0;
		padding: 0 8%;
	}		

img.logo {
	position: absolute;
	max-height: 90%;
	max-width: 90%;
	top: 10%;
	left: 10%;
	z-index: 100;
}

img.logo:empty {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/*	==========================================================================
	Tablet landscape
	========================================================================== */

@media (min-width: 1024px) {

	nav {
		font-size: 16px;
	}
		
	.overlay, #contact.overlay {
		font-size: 50px;
	}	
	
		.overlay p {
			padding: 0;
		}
}