@import url("https://fonts.googleapis.com/css2?family=Space+Mono&display=swap");

body,
html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #000;
	font-family: "Space Mono", monospace;
	font-size: 1rem;
}
canvas {
	width: 100%;
	height: 100%;
}
#ui {
	position: absolute;
	top: 10px;
	left: 10px;
	color: white;
	background: rgba(0, 0, 0, 0.7);
	padding: 10px;
	border-radius: 5px;
	max-width: 460px;
}
.control {
	margin-bottom: 10px;
}
label {
	display: inline-block;
	width: 120px;
}
input[type="range"] {
	width: 260px;
}
input[type="color"] {
	vertical-align: middle;
}
#togglePanel {
	cursor: pointer;
	user-select: none;
	font-size: 20px;
	margin-bottom: 0;
}
.colorBtn {
	margin-left: 5px;
	cursor: pointer;
	font-family: "Space Mono", monospace;
	font-size: 1rem;
}
button,
input {
	font-family: "Space Mono", monospace;
	font-size: 1rem;
}
.sliderValue {
	display: inline-block;
	width: 40px;
	text-align: right;
	margin-left: 5px;
}
#fullscreenBtn {
	margin-top: 10px;
	width: 100%;
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
