/* 页面基本布局 */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    text-align: center;
    left: 50%;
    background-image: url(image/peg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: 100;
    backdrop-filter: blur(6.5px);
}

.vscode-body {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* 阴影效果 */
}

/* 文字样式 */
p {
    font-size: 1.6em;
    margin: 15px 0;
    line-height: 1.6;
    color: #333;
}

p span {
    font-size: 1.2em;
    font-weight: bold;
    color: #3f9bdb;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* 图片样式 */
img {
    width: 100%;
    max-width: 320px !important;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 额外的文字样式 */
span {
    font-size: 2em;
    font-weight: 500;
    color: #34495e;
    margin: 20px 0;
    text-transform: uppercase;
}

ul {
    list-style: auto;
}

/* 弹窗默认隐藏 */
.content {
    text-align: start;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

button {
    margin-top: 20px;
    padding: 5px 10px;
    background-color: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
}

/* 关闭按钮悬停效果 */
button:hover {
    background-color: #c0392b;
}

/* 微调的响应式设计 */
@media screen and (max-width: 768px) {
    p {
        font-size: 1.4em;
    }

    img {
        max-width: 90%;
    }

    span {
        font-size: 1.5em;
    }
}