body {
  font-family: Arial, sans-serif;
  background-color: #A0522D;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  color: white;
}

.container {
  background-color: #DAA06D;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
}

h1 {
  text-align: center;
  color: white;
}

p {
  margin: 15px 0 5px;
  color: white;
}

label {
  color: white;
}

button {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #45a049;
}

#result {
  text-align: center;
  font-size: 18px;
  margin-top: 15px;
  color: white;
}
