body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
}

.jogo {
  text-align: center;
}

.tabuleiro {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-gap: 5px;
  margin-top: 20px;
}

.celula {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border: 2px solid #333;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.celula:hover {
  background-color: #eee;
}

.celula.vencedor {
  background-color: #aaffaa;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
}

#status {
  margin-top: 20px;
  font-size: 1.2em;
  font-weight: bold;
}

body{
  font-family: Arial, sans-serif;
  background: linear-gradient(200deg,#f7e96c,#7bf195);
  margin: 0;
  height: 100vh;  
  text-align: center;
  color:black
  ;
  margin-top:10px;
  background-repeat: no-repeat; 
}
