body {
  font-family: 'Georgia', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: grey;
  color: #333;
}

.container {
  text-align: center;
  background: #fff;
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

h1 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #222;
}

.board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.cell {
  width: 100px;
  height: 100px;
  background: #fafafa;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cell:hover {
  background: #eaeaea;
  transform: scale(1.03);
}

button {
  background: #2c3e50;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: #1a252f;
  transform: scale(1.05);
}

#status {
  margin-top: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  color:black;
}
