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

:root {
	color-scheme: dark;
}

body {
	margin: 0;
	margin-top: 20px;
	padding: 16px;
	background-color: #0b0f14;
	color: antiquewhite;
	font-family:
		system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;

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

#app {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	max-width: 320px;
}

input,
button {
	padding: 10px;
}
