

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-family: 'Roboto Condensed', sans-serif;
	background: #000 url('bg.jpg') top center no-repeat fixed;
	background-size:cover;
	-webkit-font-smoothing: antialiased;
}

body {
	color:#fff;
	font-weight: 400;
	margin: 0;
	padding: 0;
	line-height: 1.5em;
	height:100%;
	width:100%;
	font-size: 18px;
}

/* section {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	z-index: 1;
	background: rgba(255,255,255,0.2);
} */


h2 {
	margin-bottom:0;
	padding-bottom:0;
	line-height: 1em;
}

.text a, button {
	-webkit-transition:0.3s;
	-moz-transition:0.3s;
	-o-transition:0.3s;
	transition:0.3s;
}

.text {
	text-align: center;
	width: 500px;
	padding: 50px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 50%;
	margin-left: -250px;
	text-shadow: 0 1px 1px rgba(0,0,0,0.8);

}

.text a {
	color:#222;
	text-decoration: none;
	padding:0.5em 2em;
	font-weight:600;
	display: inline-block;
	text-shadow: none;
	background:rgba(255,255,255,1);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
}

.text a:hover {
	background:rgba(255,255,255,0.9);
	
}

p {margin:10px 0 40px 0}

button {
	font-family: "FontAwesome";
	font-size: 1.5em;
	cursor: pointer;
	color:#fff;
	border:none;
	background:none;
	margin:20px;
	position: relative;
	z-index:2;
}

button.off {
	opacity: 0.5;
}

button:before {
	content:"\f028";

}

/* button:after {
	content:"on";
	padding-left:10px;
} */

button.off:before {
	content:"\f026";
}

/* button.off:after {
	content:"off";
	padding-left:10px;
} */


:focus {
	outline: none;
}


