/* Font Faces */
@font-face {
  font-family: 'NotoSansTC-Regular';
  src: url('../fonts-subset/NotoSansTC-Regular.subset.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansTC-SemiBold';
  src: url('../fonts-subset/NotoSansTC-SemiBold.subset.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NotoSansTC-Bold';
  src: url('../fonts-subset/NotoSansTC-Bold.subset.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NotoSansTC-ExtraBold';
  src: url('../fonts-subset/NotoSansTC-ExtraBold.subset.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

.extra-bold{
  font-family: 'NotoSansTC-ExtraBold', sans-serif;
  font-weight: 800;
}

.bold{
  font-family: 'NotoSansTC-Bold', sans-serif;
  font-weight: 700;
}

.semi-bold{
  font-family: 'NotoSansTC-SemiBold', sans-serif;
  font-weight: 600;
}

.regular{
  font-family: 'NotoSansTC-Regular', sans-serif;
  font-weight: 400;
}

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/* Typography */
body {
  font-family: 'Noto Sans TC', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1 {
  font-weight: 800;
  font-size: 96px;
}

h2 {
  font-weight: 800;
  font-size: 64px;
}

h3, h4, h5, h6 {
  font-family: 'NotoSansTC-SemiBold', sans-serif;
  font-weight: 600;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1023px) {
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  h5 {
    font-size: 16px;
}
}

