html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Mismo color que el fondo de la obra (rgb(5,7,11)): si el canvas llega a
     mostrarse un instante antes del primer render, no hay flash negro. */
  background: #05070b;
}

body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#main-canvas {
  display: block;
  background: #05070b;
  width: min(100vw, 100vh) !important;
  height: min(100vw, 100vh) !important;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
}
