html, body {
  margin: 0 !important;
  padding: 0 !important;
  background: #000 !important;
  height: 100% !important;
  font-family: "Aptos Display", "Aptos", "Segoe UI", system-ui, monospace !important;
}

.screen {
  padding: 32px !important;
  white-space: pre-wrap !important;
  line-height: 1.45 !important;
  color: #7fbfb5 !important;
}

.value {
  color: #ffffff !important;
}

.cursor {
  display: inline-block;
  width: 0.6ch;
  height: 1em;
  margin-left: 0.15ch;
  background: currentColor;
  vertical-align: -0.15em;
  animation: blink 1.2s steps(1, end) infinite;
}

@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}