:root {
	font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
	line-height: 1.5;
	font-weight: 400;
	color-scheme: light dark;
	color: #dadada;

	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	margin: 0;
	display: flex;
	place-items: center;
	min-height: 100vh;
	background-color: #1e1e1e;
	position: relative;
}

canvas {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	user-select: none;
}

* {
	box-sizing: border-box;
}

.background {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	fill: #5d5d5d;
}

aside {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0.5rem;
	z-index: 1;
}

.control {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	justify-items: center;
	border-radius: 4px;
	overflow: hidden;
	background-color: #363636;
	border: 1px solid #363636;
}

.control button {
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-items: center;
	border: none;
	/* width: 2.5rem;
	height: 2.5rem; */
	background-color: #363636;
	color: #b0b0b0;
	padding: 8px;
	cursor: pointer;
}

.control button:hover {
	background-color: #3f3f3f;
}

.control svg {
	width: 16px;
	height: 16px;
}
