:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
main { min-height: 100vh; min-height: 100dvh; }
.terminal {
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #000;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: #d8ffd8;
  font-size: 12px;
}
pre {
	margin: 0;
	padding: 0;
	overflow: hidden;
	white-space: pre;
	color: #fff;
	background: #000;
}
input { width: 100%; accent-color: #fff; }
p { margin: 0; padding: 4px 12px; color: #d8ffd8; font-size: 12px; }
.mode { color: #d8ffd8; }
button {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 16px 32px;
  border: 1px solid #fff;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 24px;
  cursor: pointer;
}
button:hover,
button:focus-visible {
  background: rgba(255, 255, 255, .16);
  outline: 2px solid #fff;
  outline-offset: 4px;
}
