:root{
	--0:#000;
	--1:#eee;
	color-scheme:light dark;
	background:light-dark(var(--1),var(--0));
	color:light-dark(var(--0),var(--1));
	margin:auto;
	padding:1em;
	max-width:70ch;
	font:clamp(1rem,1rem + .5vw,2rem)/1.5 sans-serif;
	text-align:justify;
	word-break:break-word;
	hyphens:auto;
	scroll-behavior:smooth;
	text-rendering:optimizeLegibility;
}
::selection{
	background:light-dark(var(--0),var(--1));
	color:light-dark(var(--1),var(--0));
}