html,
body {
  margin: 0;
  height: 100%;
  background: #151515;
  color: #ccc;
  font-family: system-ui, sans-serif;
}
.home-canvas {
  height: 100vh;
  overflow: hidden;
}
#pageWrap {
  position: relative;
  min-height: 100vh;
  transition:
    transform 0.35s ease,
    width 0.35s ease;
  z-index: 1;
}

#pageWrap.shifted {
  transform: translateX(260px);
  width: calc(100% - 260px);
}

/* canvas wrapper */
#pageWrap.home-canvas {
  position: relative;
  width: 100%;
  height: 100vh;
  transition:
    transform 0.35s ease,
    width 0.35s ease;
}

#pageWrap.shifted {
  transform: translateX(260px);
  width: calc(100% - 260px);
}

/* homepage elements */
#centerWrap {
  position: relative;
  width: 100%;
  height: 100%;
}

#type-stage {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 140px;
}
.surface-mark {
  width: 20px;
  height: 20px;
  display: block;
}
.surface-header {
  color: #eee;
}
