@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');

:root {
    --font-family-sans: "Noto Sans TC", sans-serif;
    --font-family-serif: "Noto Serif TC", serif;
    --color-text: #221E1F;
    --font-size-base: 20px; 
    --font-size-h1: 48px;
    --font-size-h2: 36px;
    --font-size-h3: 28px;
    --font-size-h4: 24px;
    --font-size-figcaption: 14px;
    --primary-color: #A37242;
    --secondary-color: #6c757d;
    --black: #221E1F;
    --white: #FFFFFF;
    --gray1: #F5F5F5;
    --gray9:#4f4f4f;

    --text-color: #333;
    --light-grey: #f8f9fa;
    --dark-grey: #343a40;
    --border-color: #ced4da;
}

body {
    font-family: var(--font-family-sans) ;
    color: var(--text-color);
    font-size: var(--font-size-base);
    line-height: 1.6;
    background-color: #fff;
}
@media (max-width: 575.98px){
    body{
        font-size: 1rem;
    }
}
a {
    text-decoration: none;
    color: inherit;
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: 800;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
}
h4{
    font-size: var(--font-size-h4);
    font-weight: 600;
}
figcaption {
    font-size: var(--font-size-figcaption);
}

a:hover{
    color: #CA9553;
}

@media (max-width: 768px){
    h2{ font-size: 28px;}
    h3{ font-size: 20px;}
}

