@import "//fonts.googleapis.com/css?family=Merriweather|Source+Sans+Pro:300,400,600,700";

* {
	color: #fff;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* Multiple min-heights: Since this works on unsupported page, some browsers might not support css vars or vh */
	min-height: 100%;
	min-height: 100vh;
	min-height: var(--inner-height, 100vh);
	margin: 0;
	background-color: #1a5a4f;
	font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
}

h1 {
	font-family: "Merriweather", Arial, Helvetica, sans-serif;
}
