body {
	display: flex;
	flex-direction: column;
	height: 100vh;
	margin: 0;
	padding: 1rem;
	background-color: #fffbee;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	box-sizing: border-box;
}
.landing {
	text-align: center;
	justify-content: center;
	align-items: center;
}
.logo {
	text-align: center;
}
.logo a {
	display: inline-block;
	text-decoration: none;
}
.logo img {
	max-width: 40vw;
	max-height: 40vh;
	height: auto;
	width: auto;
}
p.tagline {
	margin: 0 0 2rem 0;
	font-size: 1.2rem;
	color: #6b2e09;
}
body.legal {
	display: block;
	justify-content: initial;
	align-items: initial;
	height: auto;
	min-height: 100vh;
	text-align: left;
	color: #3b291b;
}
body.legal .logo {
  margin-top: 2rem; /* adjust to taste */
}
.legal-content {
	max-width: 720px;
	margin: 0 auto;
	padding: 2rem 1rem 4rem 1rem;
	line-height: 1.6;
}
.legal-content h1 {
	margin: 0 0 0.5rem 0;
	font-size: 2rem;
	color: #6b2e09;
	text-align: center;
}
.legal-content h2 {
	margin: 2rem 0 0.75rem 0;
	font-size: 1.3rem;
	color: #6b2e09;
}
.legal-content p {
	margin: 0 0 1rem 0;
}
.legal-content ul {
	margin: 0 0 1.5rem 0;
	padding-left: 1.25rem;
}
.legal-content li {
	margin-bottom: 0.75rem;
}
.legal-content a {
	color: #6b2e09;
}
.legal-content a:hover,
.legal-content a:focus {
	text-decoration: underline;
}
@media (max-width: 600px) {
	.logo img {
		max-width: 60vw;
		max-height: 30vh;
	}
	h1 {
		font-size: 1.5rem;
	}
	p.tagline {
		font-size: 1rem;
	}
	.legal-content h1 {
		font-size: 1.6rem;
	}
	.legal-content h2 {
		font-size: 1.2rem;
	}
	.legal-content {
		padding: 2rem 1rem 3rem 1rem;
	}
}
