.page {
	min-height: 100vh;
	background-color: #f6f5f2;
	display: flex;
	flex-direction: column;
}



header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	border-bottom: 1px solid #d9d6cf;
	background-color: white;
}
body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-size: 15px;
	line-height: 1.45;
}
.wordmark {
	display: flex;
	min-width: 97vw;
	align-items: center;
	gap: 14px;
}
a.hollowButton {
	appearance: auto;
    padding: 6pt 12pt;
    border-radius: 6px;
	border: .5pt solid #b9b9b98a;
    color: rgb(90, 90, 90);
    background-color: #dfdfdf73;
    text-decoration: none;
	font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
	font-weight: 425;
	cursor: pointer;
	font-size: 11pt;
	margin-right: .125em;
}
a.actionButton {
	appearance: auto;
    padding: 6pt 12pt;
    border-radius: 6px;
	border: 1pt #d9d6cf;
    color: whitesmoke;
    background-color: #1d4ed8;
    text-decoration: none;
	font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
	font-weight: 425;
	cursor: pointer;
	font-size: 11pt;
}
#buttonsRow {
	margin-left: auto; 
	margin-right: 0;
	padding-right: 1.5em;
}


.title {
	display: inline-block;
}
header h1 {
	font-size: 28px;
	font-family: 'Courier New', Courier, monospace;
	margin: 0;
	line-height: 1;
	font-weight: 8000;
}
/* Mirrors a project cue rule line: solid black, ~2px, sitting right under the
   header text, aligned left and running ~50% past it on the right. */
.ruleline {
	width: 155%;
	height: 2.25px;
	margin-top: 1px;
	background: #111;
}



main {
	flex: 1;
	max-width: 800px;
	width: 100%;
	margin: 40px auto;
	padding: 0 24px;
}

.image-container {
  display: flex;            /* Enables the Flexbox layout tools */
  justify-content: center;  /* Centers the image horizontally */
  align-items: center;      /* Centers the image vertically */
  height: 300px;            /* Required for vertical centering visibility */
}
#underConstruction {
	max-width: 200px;
}



hr {
	display: block;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: auto;
    margin-inline-end: auto;
    color: rgb(128, 128, 128);
    unicode-bidi: isolate;
    overflow: hidden;
	margin: 0 0 12px;
}

footer {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	padding: 0 0 32px;
}
footer hr {
	border: 1pt solid #d9d6cf80;
	border-top: 1px solid color-mix(in srgb, var(--line) 50%, transparent);
	margin: 0 0 12px;
}
footer p {
	margin: 0;
	padding: 0 24px;
	box-sizing: border-box;
	font-size: 12px;
	font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
	color: #6f6c64;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}