@charset "utf-8";
/* CSS Document */

html, body{
	height: 100%;
}
body { 
	background-image: url("../img/digital-bg.jpg") ;
	background-position: center center;
	background-repeat:  no-repeat;
	background-attachment: fixed;
	background-size:  cover;
	background-color: #000;
}

div, body{
	margin: 0;
	padding: 0;
	font-family: exo, sans-serif;
}

.wrapper {
	height: 100%; 
	width: 100%; 
}

.main-box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%; 
	height:100%;
	bottom: 0; 
	display: block;
	position: absolute;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	padding: 0.5em;
}

.logo {
	max-width: 625px;
	width: 100%;
	margin-left: auto;
}

.vertical-center {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}