html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 12px;
  color: #141416;
}

html {  
  flex-direction: column;
}

body {
  width: 100vw;
  height: 100vh;
  flex-direction: row;
  overflow: hidden;
  touch-action: none;
  position: relative;
}

main {
  position: relative;
  height: 100vh;
  width:  100vw;
  background: #fff;
}

img#result {
  width: auto;
  height: auto;
  max-height: 100vh;
  max-height: -webkit-fill-available;
  max-width: 100vw;
  display: block;
  position: absolute;
  z-index: 10000;
  box-shadow: 0 0 20px #D6D4CF;
  margin:  0;
  padding:  0;
  border:  none;
}

p#debug {
  position: absolute;
  z-index: 1000;
  top: 0em;
  left: 1em;
}

div#p5_loading {
  display: none;
}

p#load {
  position: absolute;
  z-index: 1000;
  font-weight: 400;
  top: auto;
  bottom:  auto;
  left:  auto;
  right:  auto;
  width: 200px;
  height: 30px;
  margin-top: -1.5vh;
  line-height: 15px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 8px;
}

p#load.hidden {
  display: none;
}

canvas {
  z-index: 100;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateZ(0);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}