* {
  font-family: "monospace";
}
body {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.87);
  background-color: #000000;
}

#app {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#app>div{
  margin: 0 20px;
}
#log {
  position: absolute;
  top: 10px;
  left: 10px;
  width: fit-content;
  max-height: 90vh;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}
canvas {
  border: 1px solid #ffffff;

}
