/* ## RESET ## */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	min-width: 0;
	min-height: 0;
	font: inherit;
}
html {
	color-scheme: dark light;
}
@supports (hanging-punctuation: first last) {
	html {
		hanging-punctuation: first last;
	}
}
body {
	min-height: 100dvh;
	font-size: 14px;
}
img,
picture,
svg,
video {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	font-style: italic;
	background-repeat: no-repeat;
	background-size: cover;
	/* shape-margin: 1rem; */
}
@supports (text-wrap: balance) {
	h1, h2, h3, h4, h5, h6 {
		text-wrap:  balance;
	}
}
p {
	max-width: 75ch;
}
@supports (text-wrap: pretty) {
	p {
		text-wrap:  pretty;
	}
}
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
		scroll-padding-top: 3rem;
	}
}
:root {
	--ff-emoji: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
	--ff-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Oxygen, Ubuntu, Cantarell, 'Noto Sans', 'Liberation Sans', 'Open Sans', sans-serif, var(--ff-emoji);
	--ff-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif, var(--ff-emoji);
	--ff-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace, var(--ff-emoji);
	--ff-round: ui-rounded, 'Hiragino Maru Gothic ProN', Quicksand, Comfortaa, Manjari, 'Arial Rounded MT', 'Arial Rounded MT Bold', Calibri, source-sans-pro, sans-serif, var(--ff-emoji);
	--ff-hand: 'Segoe Print', 'Bradley Hand', Chilanka, TSCu_Comic, casual, cursive, var(--ff-emoji);
}
body {
	font-family: var(--ff-sans);
	font-weight: normal;
	color: #222;
	accent-color: #222;
	min-width: 280px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.75rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }