html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  font-family: "Open Sans", sans-serif;
  -webkit-overflow-scrolling: touch;
  touch-action: manipulation;
  color: #2A2A2A;
  background-color: black;
}

html {
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100vw;
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-width: -webkit-fill-available;
  min-height: -webkit-fill-available;
}

* {
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

div.enabled-audio {
  top: 16px;
  left: 50%;
  color: orange;
  transform: translate(-50%, 0);
  position: absolute;
  visibility: hidden;
}

canvas {
  width: min(512px, 80vmin);
  height: min(512px, 80vmin);
  filter: blur(1px);
  position: relative;
}

footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
}
footer button {
  color: inherit;
  border: none;
  outline: none;
  appearance: none;
  padding: 8px;
  cursor: pointer;
  background-color: #666;
  border-radius: 1px;
}
footer button:active {
  background-color: aqua;
}

/*# sourceMappingURL=main.css.map */
