:root {
	color-scheme: light dark;
}

body {
	margin: 0;
	padding: 0;
	width: 100dvw;
	height: 100dvh;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	overflow: hidden;

	color-scheme: light dark;

	background-color: light-dark(#e0e0e0, #0a0a0a);
	color: light-dark(#202020, #e0e0e0);
}

#wrapper {
	width: fit-content;
	height: fit-content;

	display: flex;
	flex-direction: column;

	flex: 1;

	align-content: center;
	align-items: center;
	justify-content: center;
}