body {
	margin: 0;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	background-color: bisque;
}

canvas {
	width: 80vh;
	height: 80vh;
	display: block;
}

.main-container {
	display: flex;
	gap: 20px;
	margin-left: 8px;
}

.panel {
	display: flex;
	flex-direction: row;
	gap: 50px;
}

.column-wrapper {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

h1 {
	text-align: center;
	color: bisque;
	background-color: darkred;
}

h4 {
	display: block;
	font-size: 1.5em;
	margin-top: 0.67em;
	margin-bottom: 0.3em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
	color: darkred;
}

select {
	width: 100%;
	padding: 5px;
	margin: 8px 0;
	display: inline-block;
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
}

input[type="color"] {
	width: 100%;
	padding: 0;
	margin: 8px 0;
	display: inline-block;
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
}

input[type="range"] {
	-webkit-appearance: none;
}

input[type="range"]:focus {
	outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
	height: 5px;
	cursor: pointer;
	background: black;
	border-radius: 1.3px;
}

input[type="range"]::-webkit-slider-thumb {
	height: 17px;
	width: 17px;
	border-radius: 50%;
	background: darkred;
	-webkit-appearance: none;
	margin-top: -5px;
}

button {
	background-color: darkred;
	color: white;
	padding: 5px 10px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.manual-container {
	display: none;
	position: fixed;
	background-color: darkred;
	color: white;
	padding: 10px;
	border-radius: 5px;
	top: 0;
	left: 0;
	transform: translate(calc(50vw - 50%), calc(50vh - 50%));
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.manual-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}

.manual-container button {
	background-color: bisque;
	color: darkred;
}