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

body {
  background: #111;
  color: #fff;
  font-family: 'Courier New', monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

h1 {
  color: #FFFF00;
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 4px;
}

#game-info {
  display: flex;
  justify-content: space-between;
  width: 560px;
  margin-bottom: 8px;
  font-size: 16px;
}

canvas {
  border: 2px solid #2121DE;
  display: block;
}
