body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /*background-color: #000;*/
  background: linear-gradient(to bottom, #222, #111);
  flex-direction: column; /* Stack the canvas and input vertically */
  color: white;
}

.container {
  width: 90vw; /* Container width will be 90% of the viewport width */
  display: flex;
  flex-direction: column;
  align-items: center;
}

canvas {
  width: 100%; /* Full width of the container */
  height: auto; /* Height will automatically adjust to maintain the aspect ratio */
  aspect-ratio: 16 / 9; /* This property ensures the 16:9 aspect ratio */
  border: 0px solid #000;
  border-radius: 8px;
}

.command-input {
  width: 100%; /* Make the input the same width as the canvas */
  max-width: 100%; /* Prevent the input from growing beyond the container */
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  border: none;
  border-radius: 15px;
  box-sizing: border-box;
  margin-top: 10px; /* Space between canvas and input */
  background-color: darkslategray;
  color: white;
}