* {
  padding: 0;
  margin: 0;
}

html {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-content-zooming: none;
}

body {
  position: absolute;
  background: #fff;
  width: 100%;
  height: 100%;
}

#quit {
  position: absolute;
  z-index: 66666;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 28px;
  opacity: 0.4;
  border-radius: 20%;
  text-align: center;
  padding: 10px 0;
  border: 2px #04c9fa solid;
  cursor: pointer;
}

#quit:hover {
  background-color: aqua;
  color: #000;
}

#canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fdfcfb;
}

#update {
  position: fixed;
  left: 0;
  top: 0;
  font-size: 18px;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-animation: 10s linear run3;
  animation: 10s linear run3;
  text-align: center;
}

#update .loadbox {
  position: absolute;
  width: 160px;
  height: 150px;
  color: #aaa;
  left: 50%;
  top: 50%;
  margin-top: -100px;
  margin-left: -75px;
}

#update .loadbox img {
  margin: 10px auto;
  display: block;
  width: 40px;
}

@-webkit-keyframes run3 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}

@keyframes run3 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}
/*# sourceMappingURL=photo.css.map */