body {
  font-family: Georgia, serif;
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #222;
}

label {
  font-size: 1.2em;
  margin-right: 10px;
}

input[type="number"] {
  padding: 5px;
  font-size: 1em;
  width: 80px;
  text-align: center;
}

button {
  padding: 6px 12px;
  font-size: 1em;
  margin-left: 10px;
  cursor: pointer;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
}

button:hover {
  background-color: #0056b3;
}

#resultado {
  margin-top: 20px;
  font-size: 1.2em;
  font-weight: bold;
}

#resultado.positivo {
  color: green;
}

#resultado.negativo {
  color: red;
}