
html, body {
  margin: 0;
  padding: 0;
  background: black;
  height: 100%;
  overflow: hidden;
  font-family: monospace;
}

#container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mainImage {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
}

#screenArea {
  position: absolute;
  color: black;
  font-size: 14px;
  white-space: pre-wrap;
  overflow-y: auto;
  padding: 10px;
  box-sizing: border-box;
  pointer-events: none;
}

#inputContainer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: 80%;
  max-width: 600px;
}

#userInput {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: monospace;
}

#submitButton {
  margin-top: 5px;
  padding: 8px 12px;
  font-size: 14px;
  font-family: monospace;
}
