html {
  background: white;
  height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  font-family: monospace;
}

p {
  margin: 0;
}

#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

canvas {
  display: inline;
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; */
}

#render-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;

  display: none;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.8);
  color: white;

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

#render-overlay.show {
  display: flex;
}

#render-overlay::after {
  content: 'Rendering...';
  font-size: 1rem;
  /* font-weight: bold; */
  /* text-transform: uppercase; */
  letter-spacing: 0.15rem;
}
