@font-face {
  font-family: 'PingFang TC';
  src: url(./assets/fonts/PingFang_TC_regular.ttf);
  font-weight: normal;
  font-style: normal;
  
}
:root{
  color-scheme: light only;
  
}
* {
  user-select: none;
  font-family: 'PingFang TC', system-ui;
  
}
img {
  pointer-events: none;
  
}
html {
  position: relative;
  width: 100%;
  height: 100%;
  
}
body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  background: url('./assets/images/bg.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
  
}
main {
  display: flex;
  flex-direction: column;
  gap: 1vh;
  height: 96%;
  margin: 2% 3vw;
  
}
