body {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	justify-content: center;
	background-color: blue;
	margin: 0;
	padding: 0;

}

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

#board {
	display: flex;
	position: absolute;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	border: lightblue solid 10px;
	z-index: 9;
	padding: 0px;
	margin: 0px;
	top: 170px;
	left: 127px;
	width: 515px;
	height: 780px;
	overflow: hidden;
	background-color: transparent;
}

.part {
	display: block;
	position: absolute;
	z-index: 9;
	color: #000000;
	overflow: hidden;
	margin: 0px;
	-ms-user-select: None;
	-moz-user-select: None;
 	-webkit-user-select: None;
 	user-select: None;
	width: 150px;
	cursor: pointer;
}

#message {
	display: flex;
	position: absolute;
	box-sizing: border-box;
	width: 25%;
	left: 55%;
	top: 40%;
	z-index: 10;
	color: blue;
	background-color: lightblue;
	border-radius: 10px;
	border: solid white 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: 10;
	color: blue;
	overflow: hidden;
	background-color: lightblue;
	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: white;
	overflow: hidden;
	background-color: blue;
	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, #info, #ok {
	-ms-user-select: None;
	-moz-user-select: None;
 	-webkit-user-select: None;
 	user-select: None;
}
