body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

.container {
	text-align: center;
	background-color: #749ae0;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(130, 15, 15, 0.84);
}

h1 {
	margin-bottom: 20px;
}

#board {
	display: grid;
	grid-template-columns: repeat(3, 100px);
	grid-template-rows: repeat(3, 100px);
	gap: 5px;
	margin-bottom: 20px;
}

.cell {
	width: 100px;
	height: 100px;
	background-color: #d89912;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.3s;
}

.cell:hover {
	background-color: #d0d0d0;
}

#status {
	font-size: 1.2rem;
	margin-bottom: 20px;
}

#reset {
	padding: 10px 20px;
	font-size: 1rem;
	cursor: pointer;
	border: none;
	background-color: #eb081b;
	color: #fff;
	border-radius: 5px;
	transition: background-color 0.3s;
}

#reset:hover {
	background-color: #d40e71;
}
