body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 50px;
  background: linear-gradient(135deg, #c3ecff, #f3c6ff);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

h1 {
  font-size: 2.5rem;
  color: #333;
}

.game button {
  font-size: 1.5rem;
  padding: 15px 25px;
  margin: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background-color: #f9fbfc;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.game button:hover {
    background-color:#c3ecff ;
  transform: scale(1.1);
}

.game button:active{
transform: scale(0.97);
}

#resultado {
  margin-top: 30px;
  font-size: 1.3rem;
  font-weight: bold;
}
