body {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	width: 700px;
	text-align: center;
	margin: 0px auto;
	color: #111111;
}

h1 {
	font-size: 48px;
	margin: 20px;
}

section {
	display: flex;
	height: 300px;
	align-items: center;
	justify-content: space-evenly;
	margin: 20px 0;
}

#prediction {
	width: 300px;
	height: 300px;
	box-sizing: border-box;
	border: 1px solid #111;
	border-radius: 5px;
	font-size: 228px;
	line-height: 300px;
}

#main-canvas {
	border-radius: 5px;
	cursor: pointer;
}

#small-canvas, #small-main-canvas {
	display: none;
} 

button {
	font: inherit;
	text-transform: uppercase;
	height: 40px;
	padding: 0 16px;
	border: 1px solid #111;
	border-radius: 4px;
	background: none;
	outline: none;
	cursor: pointer;
	transition: all 0.3s;
  --webkit-transition: all 0.3s;
  --moz-transition: all 0.3s;
}

button:hover {
	background-color: #111;
	color: white;
}