@charset "utf-8";
/* CSS Document */

body {
	background-color: white;
	text-align: center;
	display: inline;
}

#NumberTile {
	border: 1px solid;
	border-radius: 15px;
	width: 200px;
	height: 200px;
	line-height: 200px;
	font-size: 40px;
	display: inline-block;
	background-color: lightgreen;
}
#NumberTile:hover {
	background-color: lightgrey;
	transition: 0.5s linear;
	cursor: grab;
}
#AnswerInput {
	border-radius: 15px;
	height: 75px;
	font-size: 25px;
	width: 40px;
	text-align: center;
}
#Score {
	color: darkgreen;
}