html, body {
	overflow: hidden;
}

body {
	font: var(--font-main);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--background-color-main);
	margin: 0;
}

body, body * {
	box-sizing: border-box;
}

code {
	font: var(--font-main-mono);
}

#root {
	height: 100vh;
	height: 100dvh; /* mobile browsers fix for address bar and system navigation */
}