/* 复古网页整体样式 */
body {
    font-family: "Times New Roman", Times, serif;
    background-color: #c0c0c0;  /* 早期灰色背景 */
    color: #000000;
    margin: 0;
    padding: 0;
}

/* 外框容器 */
.main {
    width: 760px;
    margin: 20px auto;
    padding: 15px;
    background-color: #ffffff;
    border: 3px solid #000000; /* 老式黑色边框 */
}

/* 顶部横幅 */
header {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-bottom: 2px solid #000000;
    background-color: #e0e0e0; /* 淡灰条背景 */
}

/* 导航栏 */
nav {
    text-align: center;
    font-size: 14px;
    margin: 15px 0;
}

nav a {
    text-decoration: none;
    color: #0000ff; /* 经典蓝色链接 */
    padding: 0 5px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* 页面标题 */
h1 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
}

/* 主要内容 */
section {
    font-size: 14px;
    line-height: 1.8;
}

/* 复古按钮 */
.button {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    border: 2px solid #000000;
    background-color: #cccccc;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    color: #000000;
}

.button:hover {
    background-color: #bbbbbb;
}

/* 页脚 */
.footer {
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
    border-top: 2px solid #000000;
    padding-top: 10px;
    background-color: #e0e0e0;
}

/* 按钮容器居中 */
.buttons {
    text-align: center;
}

