/* The app's own palette, read off App/Tokens.swift so the pages and the table are the same
   green and the same ivory. No web font, no script, no request to anyone else: a page that
   says the app loads no third-party code should not load any itself. */

:root {
	--felt-high: #1d6248;
	--felt-low: #071c14;
	--ink: #f3efe5;
	--muted: #8fae9f;
	--gold: #e9c574;
	--rule: rgba(255, 255, 255, 0.1);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0 20px 72px;
	background: radial-gradient(ellipse at 50% 12%, var(--felt-high), var(--felt-low) 78%) no-repeat, var(--felt-low);
	min-height: 100vh;
	color: var(--ink);
	font: 16px/1.62 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	-webkit-text-size-adjust: 100%;
}

main {
	max-width: 36rem;
	margin: 0 auto;
}

header {
	max-width: 36rem;
	margin: 0 auto;
	padding: 34px 0 6px;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

.wordmark {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--ink);
	text-decoration: none;
}

.tagline {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

h1 {
	font-size: 30px;
	line-height: 1.2;
	margin: 26px 0 6px;
}

h2 {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 34px 0 10px;
}

p,
li {
	color: var(--ink);
}

.lede,
.stamp {
	color: var(--muted);
}

.stamp {
	font-size: 13px;
}

ul {
	padding-left: 1.15rem;
}

li {
	margin-bottom: 8px;
}

dt {
	font-weight: 700;
	margin-top: 18px;
}

dd {
	margin: 4px 0 0;
	color: var(--ink);
}

a {
	color: var(--gold);
}

footer {
	max-width: 36rem;
	margin: 46px auto 0;
	padding-top: 18px;
	border-top: 1px solid var(--rule);
	font-size: 14px;
	color: var(--muted);
}

footer a {
	margin-right: 14px;
}
