#inputSection {
	width: 650px;
	margin: auto;
	padding: 15px;
	display: flex;
	gap: 10px;
	justify-content: center;
} 
#inpNotation {
	width: 490px;
}

body {
	background-color: #f2f1f0;
	background: linear-gradient(to bottom right, #8B4513, #D2B48C);
}
h1 {
	color: #01172A;
	text-align: center;
	font-size: 45px;
}
#board-section {
	display: grid;
	
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: repeat(8, 1fr);
	box-sizing: border-box;
	width: 680px;
	height: 680px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 25px;
	margin-bottom: 25px;
	border: 4px solid black;
}
.cell.white {
	background-color: #FEFCFF;
}	
.cell.black {
	background-color: #A86540; 
	
}
.cell {
  display: grid;
  justify-items: center;
  align-items: center;   
}
.cheker{
	border-radius: 50%;
	width: 80%;
	height: 80%;
}

.cheker.white {
	background-color: #FFFAFA;
}
.cheker.black {
	background-color: #1a1100;
}
.cheker.king {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60% 60%;
}
.cheker.white.king {
	background-image: url("crown-white.webp");
}
.cheker.black.king {
	background-image: url("crown-black.webp");
}



	
