body,
html {
	height: 100%;
	margin: 0;
	padding: 0;
}
:root {
	--primary: #d1a386;
	--background: #222222;
}
body {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
		sans-serif;
	background: var(--background);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
img.logo {
	height: 20px;
	display: block;
	width: auto;
	margin-right: auto;
	margin-bottom: 48px;
}
h1 {
	color: white;
	margin: 0 0 0.5rem;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 2rem;
}
h2 {
	font-size: 20px;
}
hr {
	border: 0;
	background: var(--primary);
	height: 2px;
	margin: 30px 0;
}
.content {
	max-width: 720px;
	margin: 0 auto;
	padding: 16px;
	z-index: 1;
}
p {
	font-size: 0.875rem;
	line-height: 1.5rem;
	margin: 0 0 1rem;
}
.welcome .content {
	max-width: 280px;
}
@media (min-width: 568px) {
	.content {
		padding: 20px;
	}
}

.note {
	font-style: italic;
	color: var(--primary);
}
.upgrade-to-pro {
	font-size: 15px;
	align-items: flex-start;
}
.upgrade-to-pro .content {
	display: flex;
	flex-direction: column;
}
.upgrade-to-pro .message {
	color: white;
	line-height: 21px;
	margin: 16px 0 0;
}
.upgrade-to-pro .message :first-child {
	margin-top: 0;
}
.upgrade-to-pro h2 {
	margin: 0;
}
.commit {
	font-size: 0.625rem;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.05);
	font-family: monospace;
	margin-top: 64px;
}
