body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
        "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
        "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
        monospace;
}

/* Debug must be hidden in liveMode */
.debug-container {
    transition: all 0.3s;
    pointer-events: none;
    opacity: 0;
}

body.debug .debug-container {
    pointer-events: all;
    opacity: 1;
}

.App {
  /* background-color: #202025; */
  background-color: black;
  /* min-height: calc(var(--vh, 1vh) * 100); */
  /* max-height: calc(var(--vh, 1vh) * 100); */
  height: calc(1vh * 100);
  height: calc(var(--vh, 1vh) * 100);
  box-sizing: border-box;
  color: white;

  /* text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.603); */
}

html {
  margin: 0;
  height: 100%; /* Ensure html takes full height */
  box-sizing: border-box;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%; /* Ensure body takes full height */
  box-sizing: border-box;
}


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