html, body {
  height: 100%;
  overflow: hidden;
}

body {
  background-color: #faf8f0;
  justify-content: center;
  align-items: center;
  display: flex;
}

#canvas-wrapper {
  width: 100vw;
  height: 100vw;
}

@media (orientation: landscape) {
  #canvas-wrapper {
    width: 100vh;
    height: 100vh;
  }
}

