/*
 * This file is released into the public domain, marked with CC0.
 * A copy of the CC0 Public Domain Dedication can be found on:
 * <https://creativecommons.org/publicdomain/zero/1.0/>.
 */

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

nav {
	width: 100%;
	border-bottom: none;
}

main {
	flex: 1 0 auto;
	max-width: 40rem;
	display: flex;
	flex-direction: column;
}

main > .standout {
	margin: auto 0;
	padding: 0 1rem;
	background-color: var(--widget-bg);
	border: 1px solid var(--border);
	border-radius: 2rem;
	text-align: justify;
	text-align-last: center
}

main > hr:last-of-type ~ * {
	text-align: center;
	margin: .5rem 0;
}
