html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#canvas {
  background-image: url('/assets/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  border: 1px solid black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
}

.keyboard-container {
  display: flex;
  gap: 10px;
  position: absolute;
  z-index: 10;
  bottom: 50px;
  right: 100px;
}