body {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	justify-content: center;
	background-color: #FF7A12
}

#content {
	display: flex;
	position: absolute;
	box-sizing: border-box;
	align-items: center;
	justify-content: left;
	overflow: auto;
	background-color: #FF7A12;
	background-image: none;
	width: 1400px;
	height: 100%;
	margin: auto;
	z-index: 0;
}

#solve_puzzle, #puzzle, #free_handling {
	display: flex;
	position: absolute;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 30px;
	border: black solid 1px;
	z-index: 9;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
	background-color: transparent;
	border-radius: 99px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	cursor: pointer;
}

.board {
	display: flex;
	position: absolute;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	width: 202px;
	height: 202px;
	border: black solid 1px;
	z-index: 9;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
	background-color: transparent;
}

.part {
	display: block;
	position: absolute;
	width: 200px;
	z-index: 9;
	color: rgb(0, 0, 0);
	overflow: hidden;
	margin: 0px;
	-ms-user-select: None;
	-moz-user-select: None;
 	-webkit-user-select: None;
 	user-select: None;
	cursor: pointer;
	border: black solid 1px;
}

#message {
	display: flex;
	position: absolute;
	box-sizing: border-box;
	width: 25%;
	left: 60%;
	top: 40%;
	z-index: 10;
	color: rgb(0, 0, 0);
	background-color: rgb(255, 255, 255, 0.8);
	border-radius: 10px;
	border: solid rgb(0, 0, 0) 5px;
	overflow: hidden;
	margin: auto;
	padding: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	justify-content: center;
	text-align: center;
	cursor: pointer;
}

#info {
	display: flex;
	position: absolute;
	box-sizing: border-box;
	left: 350px;
	top: 260px;
	width: 700px;
	height: 470px;
	z-index: 9;
	color: rgb(255, 255, 255);
	overflow: hidden;
	background-color: rgb(36, 161, 53, 90%);
	border: solid rgb(0, 0, 0) 1px;
	border-radius: 30px;
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 28px;
	padding: 2% 2% 2% 2%;
	justify-content: center;
}

#ok {
	display: flex;
	position: absolute;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	top: 630px;
	left: 850px;
	width: 150px;
	height: 60px;
	z-index: 10;
	color: rgb(0, 0, 0);
	overflow: hidden;
	background-color: #FF7A12;
	border: solid rgb(0, 0, 0) 1px;
	border-radius: 99px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-weight: bold;
	padding: 0px;
	margin: 0px;
	cursor: pointer;
}

#headline, #navigation, #solve_puzzle, #puzzle, #free_handling {
	-ms-user-select: None;
	-moz-user-select: None;
 	-webkit-user-select: None;
 	user-select: None;
}
