/* CSS Document */

body, html {
	padding:0px;
	margin:0px;
	height:100%;
	
}
.box .header {
	flex:0 1 auto;
	background: rgb(0,54,157);
	color:#fff;
	font:Verdana, "sans-serif";
	display: flex;
	flex-wrap:nowrap;
	align-items:center;
}
.logo {
	padding:6px;
	display:inline-block;
}
h1 {
	display:inline-block;
	margin:5px 0px 5px 0px;
	flex-grow: 2;
	font-size: 3vw;
}
@media screen and (min-width: 900px) {
	h1 {
		font-size: 30px;
	}
}
a {
	color:#fff;
	text-decoration: none;
	border: 2px solid #5d7396;
	border-radius: 3px;
	padding: 11px 14px;
	justify-content: center;
	transition: .5s;
	background: rgba(255,255,255,0);
	margin:5px;
}
a:hover {
	background: rgba(255,255,255,.4);
}
.box {
	display:flex;
	flex-flow: column;
	height:100%;
}
.box .content {
	flex:1 1 auto;
	text-align: center;
}
iframe {
	width:100%;
	height: calc(100vh - 61px);
	max-width:1400px;
}