:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0e14;
  color: #c9d1d9;
  font: 14px/1.5 system-ui, sans-serif;
}

main {
  width: min(90vw, 900px);
  text-align: center;
}

h1 {
  margin: 0 0 0.5em;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #e6edf3;
}

.status {
  color: #8b949e;
  font-size: 12px;
  margin: 0 0 1em;
}

#terminal {
  text-align: left;
  background: #000;
  color: #3fb950;
  padding: 1em;
  min-height: 4em;
  border-radius: 6px;
  white-space: pre-wrap;
  word-break: break-all;
  margin: 0;
}
