* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #324028;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

#canvas-host,
#canvas-host canvas {
  display: block;
  width: 100%;
  height: 100%;
}

#webgl-error {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: #324028;
  color: #f4efe6;
  text-align: center;
  z-index: 10;
}

#webgl-error[hidden] {
  display: none !important;
}

#webgl-error p,
.noscript {
  max-width: 28rem;
  line-height: 1.45;
  margin: 0 auto;
  padding: 1rem;
  color: #f4efe6;
}
