body {
  background-color: black;
  color: #00ff00;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#game {
  width: 90%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#video-frame {
  border: 6px solid #00ff00;
  margin-bottom: 10px;
}

#stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 10px 0;
  font-size: 1.2em;
}

#output {
  background: black;
  border: 2px solid #00ff00;
  padding: 10px;
  width: 100%;
  height: 150px;
  overflow-y: auto;
  margin-bottom: 10px;
}

#input {
  width: 100%;
  padding: 10px;
  background: black;
  color: #00ff00;
  border: 2px solid #00ff00;
  font-size: 1em;
}