* {
	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;
}
.button {
	padding: 0 10px;
	line-height: 42px;
	display: inline-block;
	text-decoration: none;
	outline: none;
	font-size: 19px;
	text-transform: uppercase;
	font-weight: bold;
	margin-left: 4px;
	background-color:transparent;	
	color: white;
	border:2px solid white;
}

.btn_fb:hover {
	opacity: 1;
	border-color:#ffffff;
	background: #ff0000;
	 -webkit-transition:all 300ms linear;
	-moz-transition:all 300ms linear;
	-o-transition:all 300ms linear;
	transition:all 300ms linear;
}
.btn_disable:hover{
	opacity: 1;
	border-color:#FF9F00;
	background: #FF9F00;
	color:#fff;
	 -webkit-transition:all 300ms linear;
	-moz-transition:all 300ms linear;
	-o-transition:all 300ms linear;
	transition:all 300ms linear;
}
.btn_ktk:hover{
	opacity: 1;
	border-color:#ffffff;
	background: #fff;
	color:#000;
	 -webkit-transition:all 300ms linear;
	-moz-transition:all 300ms linear;
	-o-transition:all 300ms linear;
	transition:all 300ms linear;
}


.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: center;
	position: absolute;
	bottom:40px;
}
.footer a {
	display: inline-block;
	text-decoration: none;
	margin: 0 20px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75)
}
