body {
  margin: 0px;
  background-color: black;
  overflow: hidden;
}

canvas {
  background: radial-gradient(closest-side, rgb(6, 28, 224), rgb(5, 23, 184), rgb(4, 18, 141), rgb(3, 11, 83), rgb(2, 7, 51));
  margin: 2px;
  padding: auto;
  width: 100%;
  height: 100%;
}

img {
  display: none;
}

button {
  background: rgb(9, 7, 112);
  font-family: 'Press Start 2P', monospace;
  border-color: rgb(81, 32, 255);
  border-width: 2px;
  border-radius: 2px;
  color: rgb(81, 32, 255);
  display: flex;
  display: inline-block;
  justify-content: center;
  position: absolute;
  left: 40%;
  right: 40%;
}

button:hover {
  background: rgb(81, 32, 255);
  border-color: rgb(9, 7, 112);
  color: rgb(9, 7, 112);
  transform: scale(1.1, 1.1);
  transition: 0.8s ease-in-out;
}