/* Base CSS Setup */

/* 指定大寫Q 改使用 Roboto 字形 */
@font-face {
  font-family: 'Roboto';
  unicode-range: U+51; /* ASCII: 指定大寫Q */
  src: local(Arial); /* Arial */
}

/* 基本 文字尺寸與行距放大 背景顏色 文字顏色等... */
body {
  color: #333;
  background-color: #F2F2F2;
  font-size: 1.0rem;
  font-family: 'Roboto', arial, 'Noto Sans TC', sans-serif;
  line-height: 2rem;
}

/* 基於 Bootstrap5的相關特性消失，改成自寫。 */
a {
  text-decoration: none !important;
}
a:hover {
  text-decoration: underline !important; 
}
