body {
    background-color: #FBFBFB;
    color: #000;
    font-family: "Marcellus", serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.header {
    font-family: "Bad Script", serif;
    background-color: transparent; 
    color: #000;
    padding-top: 40px;
    text-align: center;
    font-size: 25px;
    letter-spacing: 15px
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.category-menu {
    margin-top: -80px;
    margin-bottom: 40px;
    text-align: center;
}

.category-menu ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.category-menu li {
    padding: 70px;
}

.category-menu a {
    font-size: 18px;
    border: none;
    color: #333; /* Set link color to black */
    text-decoration: none; /* Remove underline */
}

.category-menu a.active {
    font-weight: bold;
}


.post-title {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left; /* Align text to the left */
}

.post-date {
    font-size: 14px;
    color: #666;
    text-align: left; /* Align text to the left */
}

.post-content {
    font-size: 16px;
    line-height: 1.8;
    text-align: left; /* Align text to the left */
}

.post {
    margin-bottom: 40px;
}

@media only screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }
    .post {
        margin-bottom: 20px;
    }
    .post-title {
        font-size: 20px;
    }
    .post-date {
        font-size: 12px;
    }
    .post-content {
        font-size: 14px;
    }
    .category-menu select {
        font-size: 14px;
    }
}
.post-date {
    font-size: 12px; /* Adjust font size for date */
    color: #666; /* Set color to grey */
}
/* 在這裡添加您的 CSS 代碼來設計文章內容的排版 */

.post {
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc; /* 添加底部邊框 */
    padding-bottom: 20px; /* 添加底部填充 */
}

.post-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.post-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.post-content {
    font-size: 16px;
    line-height: 1.6;
}
#backButton {
    float: right;
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #666; /* 灰色字體顏色 */
    background-color: transparent; /* 背景透明 */
    border: none; /* 移除邊框 */
    cursor: pointer; /* 鼠標指針樣式為手型 */
    padding: 5px 10px; /* 按鈕內邊距 */
    margin-top: 50px; /* 上邊距 */
}

#backButton:hover {
    text-decoration: underline; /* 滑鼠懸停時添加下劃線 */
}
.post-title:hover {
    text-decoration: underline; /* 滑鼠懸停時添加下劃線 */
    cursor: pointer; /* 滑鼠懸停時顯示一般游標 */
}

#pagination-container {
    display: flex;
    justify-content: center; /* 將內容置中 */
    margin-top: 20px;
}
.pagination-button {
    font-family: Arial, sans-serif;
    color: #666; /* 灰色字體顏色 */
    background-color: transparent; /* 背景透明 */
    border: none; /* 移除邊框 */
    cursor: pointer; /* 鼠標指針樣式為手型 */
    padding: 5px 10px; /* 按鈕內邊距 */
    margin-top: 10px; /* 上邊距 */
    font-size: 14px; /* 設置字體大小 */
    margin: 0 5px; /* 設置按鈕間的間距 */
}
.pagination-button:hover {
    text-decoration: underline; /* 滑鼠懸停時添加下劃線 */
}
.article-preview-container + .article-preview-container {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 20px;
}
