/* @import url( "reset.css" ); */

html {
	font-size: 62.5%;
}

/* body */
body {
	color: #eee;
	margin: 0;
	padding: 0;
	font-family: helvetica, arial, sans-serif;
	font-weight: 100;
	letter-spacing: 1px;
	line-height: 1.4;
	background-image: url('../images/global/bg_dither.png'), radial-gradient(circle at 50% 20%, transparent 0% 45%, #0b0b0b 100%);
	background-color: #384145;
}

/* site footer */
footer {}

/* headings */
h1 { font-size: 24em; } /* 24px */
h2 { font-size: 20em; }	/* 20px */
h3 { font-size: 16em; }	/* 16px */
h4 { font-size: 14em; }	/* 14px */

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 0.8em;
}

/* anchors */
a:link, a:visited {
	color: #6cf;
	text-decoration: none;
	border-bottom: dotted 1px;
}
a:visited {
	color: #5be;
}
a:hover, a:active {
	border-bottom: solid 1px;
}

/* paragraphs */
p { margin-bottom: 1em; }
* p:last-child { margin-bottom: 0; }

/* characters */
strong, b { font-weight: 400; }
em, i { font-style: italic; }

/* misc */
address {
	font-style: normal;
}
abbr {
	font-variant: small-caps;
}

/* content area */
.content {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
}

.splash {
	margin: 50px 0;
	width: 25vw;
	min-width: 250px;
	transform: rotate(-5deg);
}

.splash p {
	text-align: center;
	padding: 0.8em 1em 0.6em 1em;
	background-color: rgba(250, 250, 250, 0.06);
	border-radius: 3px;
}

.splash p .hilight {
	color: #aaa;
}

.splash img#logo_lockup {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 5.5em 0;
}

/* drop shadow */
.papershadow {
	position: relative;
} 
.papershadow:before, .papershadow:after {
	position: absolute;
	width: 60%;
	height: 15px;
	content: ' ';
	left: 10px;
	bottom: 14px;
	background: transparent;
   transform: skew( -5deg ) rotate( -5deg );
	box-shadow: 0 6px 12px rgba( 0, 0, 0, 0.3 );
	z-index: -1;
}
.papershadow:after {
	left: auto;
	right: 10px;
	transform: skew( 5deg ) rotate( 5deg );
}