html {
	position: relative;
	width: 100%;
	min-height: 100%;
}

body {
	position: relative;
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    font-weight: normal;
    background: #0f0c29;
    color: #fff;
    text-align: left;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;	
}

body:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #1E3D6F;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #1E3D6F, #00B3DB);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #1E3D6F, #00B3DB); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.content {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 300px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.logo {
	position: relative;
	width: 100%;
}

.address {
	font-size: 20px;
	margin: 0;
	padding: 10px 0 14px;
	text-align: center;
	border-bottom: 1px solid #3b80b1;
}

.contact {
	text-align: center;
	margin: 0;
	padding: 16px 0;
}

.contact a {
	color: #fff;
	text-decoration: none;
}

.contact a:hover {
	text-decoration: underline;
}