/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: #f5f5f5;
	display: flex;
	margin: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

canvas {
	border: 2px #9FB0FF solid;
}

.toolbox {
	border: 2px #9FB0FF solid;
	border: 1px #FF9D00 solid;
	display:flex;
	width: 804px;
	padding: 1rem;
}

.toolbox > * {
	background-color: #fff;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	height: 50px;
	width: 50px;
	margin: 0.25rem;
	padding: 0.25rem;
	cursor: pointer;
}

.toolbox > *:last-child {
	margin-left: auto;
}