/* 隱藏捲軸，但仍有捲動功能 */
::-webkit-scrollbar {
  display: none;
}
html {
  height: 100%;
}
body {
  font-family: "Microsoft JhengHei";
  height: 100vh;
  background-image: url(../images/bg.jpg);
  color: #000000;
  position: relative;
  overflow-x: hidden;
}
