/* 清除默认边距 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 页面铺满全屏，红色背景 */
body {
  width: 100vw;
  height: 100vh;
  background-color: rgb(193, 225, 193); /* 纯红色背景 */
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center;     /* 垂直居中 */
}

/* 中间文字样式 */
.center-text {
  color: black;       /* 黑色字体 */
  font-size: 60px;    /* 字体大小 */
  font-weight: normal;  /* 加粗 */
  font-family: "Microsoft YaHei", sans-serif;
}