h1 {
	text-align: center;
}

.container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 80%;
	margin: 0 auto;
}

.column {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 40%;
	-ms-flex: 1 1 40%;
	flex: 1 1 40%;
	border: 1px solid black;
	padding: 5px 25px;
}

button {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	margin-top: 20px;
}

nav {
	text-align: center;
}

nav ul {
	list-style-type: none;
	padding: 0;
}

nav ul li {
	display: inline-block;
	padding: 0 10px;
}

.animate-view-container {
	position: relative;
	min-height: 100%;
}

.animate-view.ng-enter,
.animate-view.ng-leave {
	-webkit-transition: 0.5s linear all;
	transition: 0.5s linear all;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #eee;
}

.animate-view.ng-enter {
	opacity: 0;
	z-index: 100;
}

.animate-view.ng-enter.ng-enter-active { opacity: 1; }

.animate-view.ng-leave {
	opacity: 1;
	z-index: 99;
}

.animate-view.ng-leave.ng-leave-active {
	opacity: 0;
}