/*

Table of Contents

1. Global

2. Navigation

3. Home Page

	- Intro

*/

/* 1. Global */

* {
	box-sizing: border-box; 
}

body {
	margin: 0;
	font: 400 16px 'Alegreya SC', serif;
	overflow-x: hidden;
}

.site-wrap {
	min-width: 100%;
	min-height: 100%;
	height: 100vh;
	position: relative;
	top: 0;
	bottom: 100%;
	left: 0;
	z-index: 1;
}

section {
	display: table;
	background-color: #373B44;
	margin: 0;
	position: relative;
	padding: 2%;
	width: 100%;
	max-width: none;
	height: 100vh;
	z-index: 1;
}

.content {
	display: table-cell;
	vertical-align: middle;
}

/* 2. Navigation */

nav {
	background: #f9ea0f;
	-webkit-box-shadow:inset 2px 1px 8px 1px rgba(0,0,0,0.2);
	box-shadow:inset 2px 1px 8px 1px rgba(0,0,0,0.2);
	font: 700 1.000em 'Open Sans Condensed', sans-serif;
	padding: 1%;
	position: fixed;
	right: 0;
	width: 15%;
	height: 100vh;
	z-index: 2;
}

/* 3. Home Page */

.intro {
	background: url(assets/images/background-intro.jpg) no-repeat;
	background-size: cover;
	text-align: center;
}

.intro h1 {
	font-size: 1.85em;
	text-align: center;
}

.intro p {
	display: inline-block;
	font-size: 1.55em;
	text-align: center;
	width: 75%;
}

.intro a {
	background: #f9ea0f;
	color: #000;
	text-decoration: none;
	padding: 0%;
}

.intro a:hover,
.intro a:active {
	background: #d7cb1b;
}

.logo {
	margin: 0 auto;
	position: relative;
	text-align: center;
}