/* --- Common Styles --- */
:root {
    color-scheme: light;
}
html {
	background:aliceblue;
}
body {
	padding: 1rem;
	color:#333;
	display:grid;
	grid-template-rows: 1fr auto;
	height:100dvh;
}
main {
}
footer {
	padding:1rem;
	display:flex;
	gap:1rem;
	justify-content: center;
	font-size:.8em;
	
}