/* CSS Document */
html, body {
	width: 100%;
	height: 100%;
	min-height: 100%;
}
body {
	width: 100%;
	height: 100% !important;
	font-size: 100%;
	font-weight: normal;
	line-height: 100%;
    font-family: 'Encode Sans Condensed', sans-serif;
	background-attachment: scroll;
	background-image: url(images/background.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	position: relative;
	color: #FFF;
}
img {
	max-width: 100%;
	height: auto;	
}
.wrapper {
	width: 100%;
	height: 100%;
	background-color: rgba(49,66,85, 0);
}
.logo {
	width: 200px;
	height: 200px;
	padding: 20px;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0);
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	text-align: center;
}
.facebook {
	width: 50px;
	height: 50px;
	display: inline-block;
	margin: 30px auto 0 auto;
	border-radius: 100%;
}

@media only screen and (max-width: 768px) {
body {
	background-attachment: fixed;
	background-position: left top;
	background-size: cover;
}
}