@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
* {
  box-sizing: border-box;
}
html,
body {
  font-family: 'Noto Sans TC', sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: normal;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s ease-in;
  color: #2e2e2e;
  /* margin-top: 52px; */
}
/* @media (min-width: 768px) {
  body {
    margin-top: 120px;
  }
} */
/* Fixes issue with Safari's user agent stylesheet  */
@supports (-webkit-appearance: none) {
  input,
  button {
    margin: 0;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
  }
}
