@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;
    overflow-x: hidden;
} 

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

sub { 
    vertical-align: sub; 
} 
 
/* .container { 
    max-width: 70%;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
} 
@media (max-width: 768px){
    .container { 
        margin: 20px auto;
    } 
}
 @media screen and (max-width: 376px) { 
    .container { 
        max-width: 355px; 
    } 
 } */