@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;
    --font-size-base: 18px; 
    --font-size-h1: 48px;
    --font-size-h2: 32px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-figcaption: 14px;
    --primary: #80CBC4;
    --secondary: #5eb8af;
    --third: #45918c;
    --fourth: #FF7043;
    --sixth: #3D8DCC;
    --black: #221E1F;
    --white: #FFFFFF;
    --gray100: #F1F1F1;
}
html{
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family-serif);
    color: var(--black);
    font-size: var(--font-size-base);
    letter-spacing: 0.6px;
    line-height: 1.6;
    background-color: var(--gray100);
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-serif);
}

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

h2 {
    font-size: var(--font-size-h2);
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    line-height: 1.4;
}
h4{
    font-size: var(--font-size-h4);
    font-weight: 600;
}

figcaption {
    font-size: var(--font-size-figcaption);
}

@media (max-width: 767px){
    h2{
        font-size: 1.5rem;
    }
    h3{
        font-size: 1.4rem;
    }
    h4{
        font-size: 1rem;
    }
    p{
        font-size: 1rem;
    }
}
