html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #202329;
  touch-action: none;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  overscroll-behavior: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

canvas {
  display: block;
  background: #d9e0e6;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

body.phone canvas {
  box-shadow: none;
}

#safe-area-probe {
  position: fixed;
  visibility: hidden;
  pointer-events: none;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

@supports (height: 100dvh) {
  html, body {
    height: 100dvh;
  }
}
