body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #3a4e4e;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  color: black;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.square {
  width: 80px;
  height: 80px;
  background-color: #a0aec0;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

button {
  padding: 10px 20px;
  background-color: #e2e8f0;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
}

.status {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
}
