html, body {
	width: 100%;
	height: 100%;
	overflow: hidden;	
}

body {
	background-color: #333;
	color: #fff;
	font-family: 'Roboto-Regular';
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 10px 0;
}

#main {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background-image: url(../img/DSC_6352.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 10%;
	background-attachment: fixed;
	transform: translateZ(0);
}

#center {
	position: absolute;
	display: block;
	top: 25%;
	left: 0;	
	width: 100%;
	background-color: rgba(0,0,0,0.7);
	padding: 25px 0;
}

#center > div {
	text-align: center;
	text-shadow: 2px 2px rgba(0,0,0,0.8);
}

#logo {
	display: block;
	width: 30%;
	margin-left: 35%;	
	height: inherit;
	background-image: url(../img/bson_logo.svg);
	background-repeat: no-repeat;
	background-size: contain;
	margin-bottom: 15px;
	-webkit-filter: drop-shadow( 2px 2px 0 rgba(0,0,0,0.8) );
  filter: drop-shadow( 2px 2px 0 rgba(0,0,0,0.8) ); /* Same syntax as box-shadow */
}

#subtitle, #subtitle a {	
	font-size: 21px !important;
	margin-bottom: 0;
}

#subtitle :first-child {
	font-size: 16px;
	margin-bottom: 30px;
}

#subtitle :last-child {
	margin-bottom: 10px;
}

#icons {
	margin-top: 0;
	font-size: 18px;
}

.fa {
	margin: 0 5px;
}


