body {
  margin: 0;
  padding: 0;
  font-family: Verdana, sans-serif;
  background-color: black;
  color: white;
}

.background {
  background-color: black;
  width: 100%;
  height: 100vh;

  /* Centralização */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.botoes {
  margin-top: 20px;
}

.botoes button {
  padding: 10px 20px;
  margin: 10px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.botaos {
  background-color: limegreen;
  color: white;
}

.botaon {
  background-color: crimson;
  color: white;
}

.botoes button:hover {
  transform: scale(1.1);
}
.imggay {
  width: 200px; 
  height: auto; 
  margin-top: 20px;
}
.botoes {
  position: relative;
  margin-top: 20px;
  height: 100px; /* espaço pro botão fugir */
}

#botaoNao {
  position: absolute;
}

