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

*,
*::before,
*::after { 
	box-sizing: border-box; 
} 

html { 
	font-size: 16px; 
    scroll-behavior: smooth;
} 

body { 
	font-family: 'Noto Sans TC', sans-serif; 
    font-size: 1rem; 
	line-height: 150%; 
} 

img {
    max-width: 100%; 
    height: auto; 
    display: block; 
} 
 
a { 
    display: block; 
    text-decoration: none;
} 

sub { 
    vertical-align: sub; 
} 
 
.container { 
    max-width: 800px;
    margin: 0 auto; 
    padding: 0 16px;
} 
  
 @media screen and (max-width: 376px) { 
    .container { 
    max-width: 355px;
    padding: 0 10px;
    } 
 }