/* 设置body的背景颜色为黑色，文本颜色为白色 */
        body {
            background-color: black;
            color: white;
            display: flex;
            justify-content: center; /* 水平居中 */
            align-items: center; /* 垂直居中 */
            height: 100vh; /* 使用视窗高度单位确保内容垂直居中 */
            margin: 0; /* 移除默认的margin */
            font-family: Arial, sans-serif; /* 设置字体 */
            font-size: 40px;
        }

        /* 确保所有内容在视觉上居中 */
        h1, h2 {
            text-align: center;
        }