body {
    background-color: rgba(77, 128, 255, 0.8); /* 使用RGBA颜色设置80%的透明度 */
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background-size: cover;
    background-position: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.8); /* 设置文字颜色为白色并增加透明度 */
}

.logo {
    max-width: 200px; /* 根据需要调整Logo的大小 */
    display: block;
    margin: 0 auto 20px auto; /* 上下居中，底部留出空间 */
}

h1 {
    font-size: 3em;
    margin: 10px 0; /* 调整标题的上下间距 */
    text-shadow: none; /* 移除投影 */
    color: rgba(255, 255, 255, 0.8); /* 设置文字颜色为白色并增加透明度 */
}

.introduction {
    max-width: 640px;
    margin: 0 auto 60px auto; /* 增加底部间距以确保段落之间的间隔 */
    color: rgba(255, 255, 255, 0.8); /* 设置文字颜色为白色并增加透明度 */
    font-size: 1.2em;
    line-height: 1.5;
    padding: 0 10px; /* 为小屏幕设备添加一点内边距 */
}