/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("7.png");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #333;
  font-family: Verdana, sans-serif;
}
 h1 {
    text-align: center;
    color: #ff85a2;
    font-family: "Courier New", Courier, monospace;
    text-shadow: 2px 2px white; 
    margin-top: 100px;
  }
 .main-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 400px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.8); /* 半透明白色 */
  border-radius: 20px; /* 圆角 */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* 阴影 */
  text-align: center;
}