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

body {
  background: #0a0a0a;
  overflow: hidden;
  font-family: 'VT323', 'Courier New', monospace;
  cursor: default;
}

#canvas {
  display: block;
  width: 100vw;
  height: 100vh;
  image-rendering: auto;
  cursor: default;
}

#controls {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

#textInput {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 700px;
  background: transparent;
  border: none;
  color: #33ff33;
  font-family: 'VT323', 'Courier New', monospace;
  font-size: 18px;
  outline: none;
  caret-color: #33ff33;
  pointer-events: all;
  opacity: 0;
  z-index: 20;
}

#textInput:focus {
  opacity: 1;
}

#footer-link {
  position: fixed;
  bottom: 4px;
  right: 10px;
  z-index: 100;
  opacity: 0.3;
}

#footer-link a {
  color: #33ff33;
  font-family: 'VT323', monospace;
  font-size: 12px;
  text-decoration: none;
}

#footer-link a:hover {
  opacity: 1;
}