body,html {
	position: relative;
}

body {
	background-color: white;
	color: black;
	text-align: center;
}

#controls {
	margin: 15px;
	padding: 4px;
}

input, button {
	background-color: white;
	padding: 3px 6px;
	border: 1px solid black;
}

button:active {
	background-color: lightgray;
}

canvas {
	width: 100%;
	height: 100%;
}

#traces {
	background-color: hsla(180, 10%, 60%, 1);
	box-shadow: inset 0px 1px 1px rgba(0, 0, 0, .5);
	border-radius: 10px;
	position: relative;
	overflow: scroll;
}

.trace {
	padding: 2px 4px;
	margin: 5px;
}

#app {
	overflow: hidden;
	display: flex;
	flex:1;
	flex-direction: column;
}

#main-5 {
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 700px;
	height: 90%;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 0px auto;
}

/* scroll bar stuff */

/* width */
::-webkit-scrollbar {
	width: 1px;
}

/* Track */
::-webkit-scrollbar-track {
	background: lightgray;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: black
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: darkgrey;
}