/*---------------------------------------------------
RESET
---------------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*---------------------------------------------------
GENERAL
---------------------------------------------------*/

.wrapper {
    display: table;
    width: 90%;
    margin: 0 auto;
    height:100vh;
}

.main-content {
/*	padding: 10px;
*/    display: table-cell;
    text-align: center;
    vertical-align: middle;
}


header {
	margin: 0 0 30px 0;
}

header,
p {
	display: none;
}

.graphic {
	margin: 0 auto;
	width: 35%;
	min-width: 100px;
	max-width: 150px;
}

nav a {
	background: #fff;
	border-radius: 3px;
	border: solid 1px #303030;
	color: #303030;
	opacity: 0.4;
	display: block;
	margin: 10px auto;
	max-width: 150px;
	padding: 8px 18px;
	-webkit-transition: opacity .1s linear;
	-moz-transition: opacity .1s linear;
	-o-transition: opacity .1s linear;
	-ms-transition: opacity .1s linear;
	transition: opacity .1s linear;
}

nav a:hover {
	opacity: 1;
	border: solid 1px #3646ec;
	color: #3646ec;
}

header,
nav {
	text-align: center;
}

nav {
	margin: 0;
}



/*---------------------------------------------------
TYPOGRAPHY
---------------------------------------------------*/
body {
	font-size: 1em;
}

body,
h1,
h2,
p {
	line-height: 1.4em;
}

p {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	letter-spacing: 1.5px;
	max-width: 600px;
	margin: 0 auto;
	color: #000000;
  }

h1 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1.25em !important;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #202020;
 } 
h2 {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-style: normal;
	font-size: 1.25em !important;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #3646ec;
 }

nav a {
	font-family: 'Roboto', sans-serif;
	font-size: .875em;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 1px;
	text-decoration: none;
}


/*---------------------------------------------------
RESPONSIVE
---------------------------------------------------*/

@media screen AND (min-height: 481px) {
	h1,
	h2 {
		font-size: 1.5em;
	}

	h2 {
		margin: 0 0 1em 0;
	}

	header,
	p {
		display: block;
	}
}

/*@media screen AND (min-width: 540px) AND (min-height: 481px) {
	h1, 
	h2 {
		font-size: 2em;
	}
}*/

@media screen AND (orientation: landscape) {
	nav a {
		display: inline-block;
		margin: 0;
		padding: 8px 18px;
	}
}

@media screen AND (min-width: 321px) and (orientation: landscape) {
	nav a {
		margin: 0 5px;
	}
}
@media screen AND (min-width: 768px) {
	h1, 
	h2 {
		display: inline-block;
		margin: 0 0 1em 0;
	}

	h1:after {
		content: " ";
		margin: 0 .15em;
	}
}