html, body {
  height: 100%;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  background-image: url("assets/1.webp"); /* 换成你的图片路径 */
  background-size: cover;
  background-position: center;   /* 图片居中 */
  background-repeat: no-repeat;  /* 不重复 */
  font-family: serif;
  color: #fff;                   /* 背景深的话文字改成白色 */
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

#generateBtn {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
}

#output {
  max-width: 600px;       /* 文本区域的最大宽度 */
  margin: 40px auto 0;    /* auto 让它水平居中 */
  line-height: 1.8;
  font-size: 20px;
  white-space: pre-wrap;
  padding: 20px;
  background: rgba(0,0,0,0.4); /* 可选，让字更清晰 */
  border-radius: 8px;     /* 可选，让背景更柔和 */
}
