/* 设置页面的背景颜色为白色 */
body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* 设置文字方框的样式 */
.text-container {
    background-color: #339933; /* 绿色背景 */
    padding: 20px; /* 内边距 */
    border-radius: 0px; /* 圆角边框 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 阴影效果 */
    text-align: center; /* 文字居中 */
    font-size: 24px; /* 字体大小 */
    font-weight: bold; /* 字体加粗 */
    color: #ffffff; /* 文字颜色 */
}