/*
    Author: Scott Hernandez
    Version: 3.0
    URL: http://scotthernandez.design
*/

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

div,
section,
aside,
article,
header,
nav,
ul,
ol,
li {
    box-sizing: border-box;
}

body {
    font-family: pragmatica, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #000;
	position: relative;
	font-size: 16px;
	color: #FFF;
	margin: 0;
}

body, html{
    overflow-x: hidden;
}

.clearfix:after,
.clearfix:before {
	display: table;
	content: " ";
}
.clearfix:after {
	clear: both;
}

/* Link style
---------------------------------------------------------*/
a {
    color: #FFF;
}
a,
a > * {
	text-decoration: none;
	cursor: pointer;
    outline: none;
}
a:active,
a:focus {
	text-decoration: none;
	outline: none;
	color: #999;
}


/* Transition elements
-------------------------------------------------------- */

a,
.btn {
	-webkit-transition: all 0.1s ease-out 0s;
	   -moz-transition: all 0.1s ease-out 0s;
		-ms-transition: all 0.1s ease-out 0s;
		 -o-transition: all 0.1s ease-out 0s;
			transition: all 0.1s ease-out 0s;
}

/* Buttons
/* ------------------------------------------------------ */

.btn {
	text-transform: uppercase;
	border: 2px solid #FFF;
	letter-spacing: 1px;
	border-radius: 2px;
	text-align: center;
	font-weight: 700;
	display: block;
	
	line-height: 1.2em;
	font-size: 0.9em;
	padding: 16px;

	margin-bottom: 20px;
}
.btn.primary {
	background: #FFF;
	color: #000;
}
.btn:active,
.btn:focus {
	transform: scale(1.05);
	color: #FFF;
}
.btn.primary:active,
.btn.primary:focus {
	color: #000;
}

/* Typography
/* ------------------------------------------------------ */

h1, h2, h3, h4, h5, h6{
	text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 32px;
}
h1 {
	letter-spacing: 1px;
	line-height: 1.4em;
	font-weight: 900;
    font-size: 1.9em;
}

p {
	line-height: 1.6em;
	font-size: 1.1em;
	margin: 0 0 40px;
}

/* LIST STYLE
-------------------------------------------------- */

ul.social {
	margin: 40px 0 0;
	list-style: none;
	height: 40px;
	padding: 0;
}
ul.social li {
	display: inline-block;
}

/* FLOATING HEADER
-------------------------------------------------- */

#page-wrapper {
	position: relative;
}

header {
	text-align: center;
	position: fixed;
	z-index: 10;
	right: 8px;
	left: 8px;
	top: 8px;
}

.logo {
	background-image: url("../images/logo.svg");
	background-size: cover;
	display: inline-block;
	position: relative;
	height: 80px;
	width: 80px;
}

/* CONTENT AREA
-------------------------------------------------- */

.content {
	padding: 140px 40px 80px;
	position: relative;
	min-height: 100vh;

	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.content .inner {
	text-align: center;
	max-width: 960px;
}

.border-l,
.border-r,
.border-t,
.border-b {
	background: #FFF;
	position: fixed;
	z-index: 10;
}
.border-l,
.border-r { /* Left Bar */
	width: 4px;
	bottom: 8px;
	top: 8px;
	left: 8px;
}
.border-r { /* Right Bar */
	left: auto;
	right: 8px;
}
.border-t,
.border-b {
	height: 4px;
	right: 8px;
	left: 8px;
	top: 8px;
}
.border-b {
	top: auto;
	bottom: 8px;
}

/* ICONS
-------------------------------------------------- */

.icon {
	background-size: cover;
	display: inline-block;
	text-indent: -9999px;
	border-radius: 2px;
	margin: 0 0 0 8px;
	overflow: hidden;
	height: 40px;
	width: 40px;
}
.icon:active,
.icon:focus {
	transform: scale(1.15);
}

.icon.twitter {
	background: url('../images/icon-twitter.svg') center center no-repeat;
}
.icon.instagram {
	background: url('../images/icon-instagram.svg') center center no-repeat;
}
.icon.linkedin {
	background: url('../images/icon-linkedin.svg') center center no-repeat;
}
.icon.behance {
	background: url('../images/icon-behance.svg') center center no-repeat;
}

/* BLIZZARD-SPECIFIC NOTE
-------------------------------------------------- */

.blizzard-note {
	font-size: 1em;
}
.blizzard-note a {
	text-decoration: underline;
}