html, body {
	width: 100%;
	height: 100%;
  margin: 0px;
  padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

html {
	flex-direction: column;
}

body {
	flex-direction: row;
	overflow: hidden;
  touch-action: none;
	background: #ffffff;
}

body.dark {
  background: #000000;
}

canvas {
	margin: auto;
	display: block;
}

* {
  -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;
}

button {
  display: flex;
  height: min-content;
  background: none;
  color: black;
  font-size: 1.2em;
  border: none;
}

button.dark {
  background: none;
  color: white;
}

button svg {
  height: 2em;
}

#lightDarkButton {
  position: fixed;
  right: 1em;
  top: 1em;
}
