*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	color-scheme: dark;
	--color-bg: #000;
	--color-text: #fff;
	--font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

html,
body {
	margin: 0;
	min-height: 100%;
	background: var(--color-bg);
}

body {
	color: var(--color-text);
	font-family: var(--font-system);
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
	font: inherit;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}
