body {
  height: 100vh;
  background-color: rgb(39, 39, 39);
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

h1 {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  margin: 20px 0;
  color: #f0f757;
}

.jogo-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.box {
  background-color: #cc5a71;
  color: #cc5a71;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
}

.jogo-grid .jogo-linha .color {
  color: #34344a;
}

.boxh:hover {
  background-color: #c89b7b;
  color: #c89b7b;
}

h2 {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  color: #f0f757;
}

.botao {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

a {
  color: #34344a;
  font-weight: bold;
  justify-content: center;
  padding: 10px 25px;
  background-color: #c89b7b;
  border: 1px solid black;
  text-align: center;
  transition: 0.5s;
  border-radius: 5px;
  text-decoration: none;
}

a:hover {
  background-color: #f0f757;
  transform: scale(1.2);
}

footer {
  text-align: center;
  margin-top: 150px;
  color: white;
  font-size: 1.2rem;
}

.bgYellow {
  background-color: #f0f757;
}
