* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fbfaf9;
  cursor: none;
}

@media (pointer: coarse) {
  html, body { cursor: auto; }
}

#scroll-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  background: #f0eeeb;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#scroll-wrap::-webkit-scrollbar {
  display: none;
}

#stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 4320px;
  height: 3120px;
  background: #fbfaf9;
  transform-origin: 0 0;
  box-shadow: 0 0 80px 80px #fbfaf9;
}

#layer1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 4320px;
  height: 3120px;
  min-height: 100%;
  background: #f0eeeb;
}

#layer1 img {
  position: absolute;
  display: block;
}

#layer2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 4320px;
  height: 3120px;
  z-index: 2;
}


.surface-label {
  position: absolute;
  font-family: "Lucida Grande", Verdana, Geneva, sans-serif;
  font-size: 11px;
  color: #333;
}

@media (max-width: 767px) {
  #stage { background: #f0eeeb; }
}
