html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	background: #000;
	color: #fff;
	font-family: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

#root {
	min-height: 100vh;
}

.index {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 2rem;
	box-sizing: border-box;
}

.logo {
	max-width: min(80%, 640px);
	height: auto;
}

.notfound {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	gap: 1rem;
	padding: 2rem;
	box-sizing: border-box;
}

.notfound a {
	color: #fff;
}
