/* general declarations */

html, body, body *:not(script, table, thead, tbody, tr, th, td) {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  flex-grow: 1;
  flex-shrink: 1;
  min-height: 0;
}

html {
  height: 100%;
}

body {
  margin: 0;
  color: white;
  font-family: Arial;
}

/* element specific declarations */

#canvas {
  background-color: black;
}
