/* 重置默认边距，避免影响居中效果 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 给 body 设置浅绿色背景，同时让容器能垂直居中 */
body {
    background-color: #aed6e4; /* 柔和的浅绿色，护眼不刺眼 */
    min-height: 100vh; /* 让 body 占满整个视口高度 */
    display: flex; /* 弹性布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}

/* 给文字设置样式 */
.container {
    font-size: 2rem;
    font-weight: bold;
    color: #333; /* 深灰色文字，和绿色背景对比清晰 */
    text-align: center;
}