body {
	font-family: 'Source Code Pro', monospace;
	background: #f3ede3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
}

h1 {
	font-weight: 400;
	margin: 64px
}

canvas {
	/* border: 1px solid #000; */
	display: block;
	border-radius: 6px;
}

#buttons {
	margin-top: 64px;
	margin-bottom: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 800px;
}

button {
	margin: 0 3em;
	background-color: white;
	color: black;
	border-radius: 10em;
	font-size: 13px;
	font-weight: 400;
	font-family: inherit;
	padding: 1em 2em;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	border: 0px solid black;
	box-shadow: 0 0 0 0 black;
}

button:hover {
	transform: translateY(-4px) translateX(-2px);
	box-shadow: 2px 5px 0 0 black;
}

button:active {
	transform: translateY(4px) translateX(2px);
	box-shadow: 0 0 0 0 black;
}

p {
	margin-bottom: 64px;
}

footer {
	padding: 10px;
	color: #aba9a9;
	font-size: 14px;
	text-align: center;
}