body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: black;
}

#gameCanvas {
  border: 2px solid white;
  background-color: #000;
}

#info {
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
#info a {
  color: cyan;
  text-decoration: none;
}
#info a:hover {
  text-decoration: underline;
}
