body {
  font-family: Georgia, serif;
  background: #f2efe9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  text-align: center;
  width: 90%;
  max-width: 500px;
}

input {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 80%;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 20px;
  background: #8c52ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#output {
  margin-top: 20px;
  text-align: left;
  font-size: 1.1em;
}
