@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

html, body, {margin: 0; padding:0; width: 100%;}

* {
	margin: 0;
	padding: 0;
	box-sizing:border-box;	
	font-family: 'Open Sans', sans-serif;

}
body {
	background-color: #023047;
}
p {
	margin: 0 0 15px 0;	
	color:#fff;
}
p.intro {
	font-size: 40px;	
}
.container {
	width: calc(100% - 40px);
    max-width: 716px;
	position: absolute;
    top: 10%;
    left: 50%;
    transform: translatex(-50%);
	vertical-align:middle;
}
.logo {
	margin: 0 0 15px 0;	
	text-align: center;
}
.logo img { max-width: 100%; max-height: 300px;} 
.details {
	text-align: center;	
}
@media (max-height: 420px) {
	.container div {
		width: 49.2%;
		display: inline-block;	
		vertical-align:middle;
		padding: 0 20px;
	}
}