* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	font-family: system-ui, -apple-system, sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #e0e0e0;
}

::-webkit-scrollbar {
	width: 16px;
	height: 16px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 8px;
	border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

