html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 20vw;
}


@font-face {
  font-family: 'poetsen';
  src: url('../images/POETSENONE-REGULAR.TTF') format('truetype');
}

.game,
#GameCanvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

.loading {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.loading .splash {
  position: absolute;
  width: 2048px;
  height: 960px;
  background: url();
  background-position: center center;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-text {
  position: absolute;
  bottom: 155px;
  /* margin: 0 auto; */

  width: 240px;
  height: 48px;
  font-family: Poetsen, Poetsen One;
  font-weight: 400;
  font-size: 32px;
  color: #ffffff;
  line-height: 32px;
  text-align: center;
  font-style: normal;
  text-transform: none;

  -webkit-text-stroke: 2px #670303;
}

.progress-bg {
  position: absolute;
  bottom: 50px;
  /* margin: 0 auto; */
  width: 816px;
  height: 100px;
  background: url(../images/loading_progress_bg.png) no-repeat center;
  background-size: 100% 100%;
}

.progress-bar {
  position: absolute;
  left: 22px;
  top: 15px;

  width: 0px;
  height: 56px;
  transform: translateX(-0px);
  overflow: hidden;
}

.progress-bar img {
  position: absolute;
  top: 0px;
  left: 0px;

  width: 772px;
  height: 56px;
}

.progress-des {
  position: absolute;
  margin: 0 auto;
  top: 24px;
  left: 280px;

  width: 240px;
  height: 32px;
  font-family: Poetsen, Poetsen One;
  font-weight: 400;
  font-size: 32px;
  color: #ffffff;
  line-height: 32px;
  text-align: center;
  font-style: normal;
  text-transform: none;

  -webkit-text-stroke: 2px #670303;
}

.loading .img {
  position: fixed;
  width: 220px;
  height: 230px;
  background: url(../images/loading_sp.png) no-repeat center center;
  background-size: 50% 50%;
  transform-origin: center center;
  animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}