/*RESET CSS*/
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: 10px;
	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;
}

/*--------------------------- real css beyond this point ---------------------------*/
body{
	height:100%;
	width:100%;
	margin:0;
	padding:0;
	background:#191919;
	color:#d8d8d8;
	font-family:Verdana, Geneva, sans-serif;
	
}
.wrapper{
	height:100%;
	min-height:940px;
	width:100%;
	margin:0;
	padding:0;
	
	
}
#wrapperBG{
	background: url(../media/face4.png);
    background-repeat: no-repeat;
    background-size: contain;
	background-position: 60vw center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}
.contentBox{
	position: relative;
    min-width: 400px;
    margin: 6rem 10% 0 10%;
    width: 42%;
    color: #d8d8d8;
    font-size: 2rem;
    text-align: center;
    z-index: 2;
}
.contentBox img{
	width:250px;
	height:250px;
	display:block;
	margin:30px auto auto auto;
}
#introNav{
	display:flex;
	justify-content: center;
	align-items:stretch;
	flex-wrap: wrap;
	font-size:1rem;
}
#introNav div{
	margin:30px auto;
	padding: 1rem 3rem;
}
#introNav div img{
	width:100px;
	height:100px;
	margin:0 auto 10px auto;
}
.contentBox p{
	padding: 1rem 0;
}

nav{
	position:relative;
	z-index:50;
	width:8rem;
	padding:1vh 1vw;
}
nav ul{
	position:relative;
	z-index:50;
	display:flex;
	justify-content: center;
	align-items:stretch;
	flex-wrap: wrap;
	    flex-direction: column;
}
nav ul li{
		font-size:1rem;
		margin:auto;
		display:inline-block;
		padding:1rem 2rem;
	}
@media only screen and (max-device-width: 800px) {
	nav ul li{
		font-size:3rem;
		margin:auto;
		display:inline-block;
		padding:0rem 2rem;
	}
}
#intro{
position:relative;
	z-index:100;
}
.contentBox .banner{
	width: 80%;
    margin: auto;
	height:auto;
	display:block;
}
#flexContainer{
	display:flex;
	min-height:100vh
}
#titleBar{
	position:absolute;
	z-index:100;
	font-size:3rem;
	color:fff;
	padding:4px 0 0 2rem;
	opacity:0.5;
}