* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace;
}

#root {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 1.5rem;
  color: #fff;
  background: #000;
  height: 100vh;
  overflow: hidden;
}

#canvas {
  width: 100%;
  max-width: 600px;
  /* border-radius: 0.5rem;
  border: 1px solid cyan;
  box-shadow: 0 0 1rem #00ffff; */
}

/* @media (max-width: 600px) {
  #canvas {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
} */
