@font-face {
    font-family: 'Alegreya';
    src: url('fonts/Alegreya-Italic-VariableFont_wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Amatic SC';
    src: url('fonts/AmaticSC-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Cormorant';
    src: url('fonts/Cormorant-Italic-VariableFont_wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-Italic-VariableFont_wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Josefin Slab';
    src: url('fonts/JosefinSlab-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Josefin Slab';
    src: url('fonts/JosefinSlab-Italic-VariableFont_wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-Italic-VariableFont_wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Special Elite';
    src: url('fonts/SpecialElite-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Noto Serif SC';
    src: url('fonts/NotoSerifSC-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
}

/* ========== 样式示例 ========== */

body {
    font-family: 'Raleway', sans-serif;
    padding: 50px;
    background-color: #f5f5f5;
}

h1 {
    font-family: 'Josefin Slab', serif;
    font-weight: 700;
    font-size: 48px;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.handwriting {
    font-family: 'Amatic SC', cursive;
    font-size: 32px;
}

.typewriter {
    font-family: 'Special Elite', monospace;
}

.chinese {
    font-family: 'Noto Serif SC', serif;
}
/* 导航栏样式 */
nav {
    background-color: #333;
    padding: 15px 0;
    margin-bottom: 30px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Raleway', ''Noto Serif SC', sans-serif;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #555;
}

/* 主内容区域 */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
EOF

