* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html, body, .outer, .inner {
	width: 100%;
	height: 100%;
}
html {
	background: url('../img/background.jpg') no-repeat center center;
	min-height: 100%;
	background-size: cover;
}
body {
	min-height: 100%;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
}
.page_container {
	max-width: 780px;
	height: 200px;
	width: 90%;
	margin: auto;
}
.outer {
	display: table;
}
.inner {
	display: table-cell;
	vertical-align: middle;
	padding: 20px;
}
.inner > div {
	width: 780px;
	margin: 0px auto;
	padding: 10px;
}
h1 {
	font-size: 600%;
	text-align: center;
	color: white;
	text-transform: uppercase;
}
.center {
	text-align: center;
}
ul {
	position: relative;
	float: left;
	left: 50%;
	margin: 0 auto;
	padding: 0;
}
li {
	position: relative;
	float: left;
	right: 50%;
	margin-right: 10px;
	list-style: none;
}
a .fa-circle {
	color: black;
}
a .fa-facebook {
	color: white;
}
a:hover .fa-circle {
	color: white;
}
a:hover .fa-facebook {
	color: black;
}
a:hover .fa-vimeo {
	color: black;
}
a:hover .fa-soundcloud {
	color: black;
}
a:hover .fa-instagram {
	color: black;
}
a:hover .fa-twitter {
	color: black;
}
a:hover .fa-youtube {
	color: black;
}
.img-responsive{
    display: block;
    max-width: 100%;
    height: auto;
	margin: 0 auto;
}
.overlay-container {
	z-index: 50;
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}
.overlay:target+.overlay-container {
	opacity: 1;
	pointer-events: auto
}
.overlay a {
	color: red;
	text-decoration: none
}
.overlay {
	z-index: 99;
	position: fixed;
	top: 10%;
	left: 10%;
	bottom: 10%;
	right: 10%;
	background: white;
	color: #444;
	overflow-y: scroll;
	padding: 30px 50px;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-o-transform: scale(0.9);
	transform: scale(0.9);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.overlay:target {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	pointer-events: auto;
	opacity: 1
}
.overlay p {
	font-family: 'Proxima Nova', proxima-nova, Gotham, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 24px;
	margin: 17px 0px;
}
.overlay h2 {
	font-family: 'Proxima Nova', proxima-nova, Gotham, sans-serif;
	font-size: 21px;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	line-height: 24px;
	margin: 17px 0px;
}
.footer {
	width: 100%;
	text-align: right;
	position: absolute;
	bottom: 10px;
}
.footer a {
	display: inline-block;
	text-decoration: none;
	margin: 0 20px;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.75)
}
