:root[data-theme=light] {
	/* Pico.css theme */
	--font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
	--font-size: 16px;
	--spacing: 0.75rem;
	--block-spacing-vertical: var(--spacing);
	--primary: #2B5592;
	--primary-hover: #64BBE3;
	--primary-focus: #64BBE3;
	--color: #000;
	--modal-overlay-background-color: rgba(0,0,0,0.5);
	margin: 0;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main {
	flex-grow: 1;
}

article {
	border-radius: 1.6rem;
	max-width: 320px;
	margin: auto;
	/* clamping between 263px and 320px, min, ideal, max */
	min-width: clamp(263px, 50%, 320px);
	/*text-align: center;*/
	/* Hard-code for Outlook */
	padding: 48px 24px;
	position: relative;
}

article>header>hgroup {
	margin-bottom: 0;
}

article>header>hgroup>h1 {
	font-size: 2rem;
	font-weight: normal;
}

article>header>hgroup>:last-child {
	font-size: 0.9rem;
}

form {
	margin-bottom: 0;
}

.footer {
	background-color: #2B5592;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	font-size: 14px;
	bottom: 0;
	width: 100%;
}

.footer>* {
	white-space: nowrap;
}

.footer a {
	color: #fff;
	margin: 0 10px;
	text-decoration: underline;
}

dialog > article {
	text-align: justify;
}
