@font-face {
  font-family: 'titleFont';
  src: url('../fonts/nm9.ttf');
} 
html, body {
  margin:0px;
  width: 100%;
  height: 100%;
  padding:0px;
  overflow: hidden;
  font-family: Arial;
  -webkit-user-select: none; /*不可複製用*/
  -ms-user-select: none; /*不可複製用*/
  user-select: none; /*不可複製用*/
}
#CanvasDiv { /*放置Canvas*/
  position: relative;
  margin: 10;
  padding: 0;
  width: 100%; 
  height: 100vh;
  transform-origin : 0% 0%;
}

#_preload_div_ {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

/* .circle {
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 50%;
  background: #fff
} */
.loading-icon{
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 50%;
}

.loading-icon img {
  width: 64px;
  height: 64px
}
#pie_text {
  top: 69px;
  font-size: 30px;
  color: #000;
  position: relative;
}


* {
-ms-touch-action: manipulation;
touch-action: manipulation;
}