body {
  background: #fef6e4;
  font-family: "Arial", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

h1 {
  color: #f582ae;
}

button {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  background: #8bd3dd;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #6ec4ce;
}

#message {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #333;
}
