body {
    font-family: Verdana, sans-serif;
    background-color: whitesmoke;
}
h1,h2,h3,h4,h5,h6 {
    font-family: Georgia, serif;
    color: #4E0102;
}
h1 {
    text-align: center;
}
h2 {
    border-top: solid 2px #0c0c0c;
    padding-top: 1em;
}
em {
    font-weight: bold;
    font-size: 120%;
}
blockquote {
    background: #F0ECEC;
    margin: 1em;
    font-style: italic;
}
.firstLetter {
    font-size: 300%;
    font-family: Georgia, serif;
    color: #4E0102;
}
.firstWord {
    text-transform: uppercase;
}
#firstStory {
    color: #17037A;
}

 /* Footer */
 footer {
    text-align: centre;
    padding: 1rem;
    background: #333;
    color: white;
    font-size: 0.9rem;
  }

  .bigimage{
    width:100%;
  }
  .littleimage{
    width:20%;
    height:20%;
  }

/* 侧边栏样式 */
#sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #1a202c; /* 深灰色背景 */
    color: white;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.3);
}

/* 关闭按钮样式 */
#closeSidebar {
    font-size: 24px;
    color: #a0aec0; /* 浅灰色 */
    border: none;
    background: none;
    cursor: pointer;
}

#closeSidebar:hover {
    color: white;
}

/* 侧边栏标题 */
.sidebar-title {
    color: #63b3ed; /* 淡蓝色 */
    font-size: 20px;
    font-weight: bold;
    margin-top: 16px;
    margin-left: 40px; /* 调整这个值让菜单右移 */
}

/* 侧边栏内的导航菜单 */
.sidebar-menu {
    margin-top: 24px;
}

.sidebar-menu li {
    list-style: none;
    margin-bottom: 16px;
}

/* 按钮样式 */
.sidebar-link {
    display: block;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #a0aec0; /* 浅灰色 */
    background: linear-gradient(to right, #4299e1, #2b6cb0); /* 渐变蓝 */
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-link:hover {
    color: white;
    background: linear-gradient(to right, #3182ce, #2c5282);
}

/* 侧边栏展开按钮 */
#openSidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px;
    background-color: #3182ce;
    color: white;
    border-radius: 0 8px 8px 0;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

#openSidebar:hover {
    background-color: #2c5282;
}

#navigation {
    font-family: Georgia, serif;
    font-size: 100%;
    border-top: solid 2px #4E0102;
    border-bottom: solid 2px #4E0102;
}

li {
    display: inline;
    list-style-type: none;
}

