body {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	text-align: center;
	margin: 0px 1%;
	color: #111111;
	background-color: #CAFCFC;
}

.display{
	display: flex;
}

h1 {
	font-size: 32px;
	margin: 20px;
	text-align: left;
}

p{
	text-align: left;
}

section {
	display: block;
	width: 200px;
	align-items: center;
	justify-content: space-evenly;
	margin: 2px 10px;

}

#first-prediction, #second-prediction, #result {
	width: 200px;
	height: 200px;
	box-sizing: border-box;
	border: 1px solid #111;
	border-radius: 5px;
	font-size: 150px;
	background-color: white;
	margin-top: 5px;
}

#first-canvas, #operator-canvas, #second-canvas {
	border-radius: 5px;
	cursor: pointer;
}

#first-small-canvas, #second-small-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;
}