html,body {
	width: 100%;
	height: 100%;
}
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Zen Kurenaido', sans-serif;
	background-color: #eee;
	color: #2d2d2d;
}
.box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height:75%;
	width: 75%;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	height:100vh;
}

.container.heading .box {
	border-left: 1vmin solid #000040;
}
.container.heading h2 {

}

.container.contact .box {
	border-left: 1vmin solid #eee;
}
.container.contact {
	background-color:#000040;
	color:#eee;
}
.container.contact h2 {
	color: #eee;
}
h1 {
	color: #000040;
	font-size: 20vmin;
	line-height: 1em;
	white-space: nowrap;
}
h1 > span {
	color: #2d2d2d;
	font-size: 10vmin;
	padding-left: 2vw;
}
h2 {
	font-size: 7.5vmin;
	margin: 0;
	line-height: 1em;
	white-space: nowrap;
}

.container a {
	padding:10px 30px;
	width:100%;
	height:100%;
	color: #eee;
	text-decoration: none;
	font-size: 6vmin;
}
.container a > span {
	color: #2d2d2d;
	font-size: 4vmin;
}
.container a:hover {
	border-bottom: 1px solid #eee;
}
footer a {
	color: #2d2d2d;
	text-decoration: none;
}
footer a:hover {
	color: #2d2d2d;
	border-bottom: 1px solid #2d2d2d;
}
@media only screen and (min-width: 660px) {
	footer {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	footer > * {
		padding: 20px;
	}
}

footer {
	font-size: 0.9em;
}
footer > * {
	padding: 5px 20px;
}