@font-face {
  font-family: 'Cascadia Mono';
  src: url('fonts/CascadiaMono-SemiLight.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cascadia Mono';
  src: url('fonts/CascadiaMono-SemiBold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cascadia Mono';
  src: url('fonts/CascadiaMono-SemiLightItalic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cascadia Mono';
  src: url('fonts/CascadiaMono-SemiBoldItalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

:root {
  --black: #111111;
  --white: #f2f2f2;
  --green: #08eb00;
  --blue : #007af5;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

prompt {
  --background-color: var(--black);
  --color           : var(--white);

  background: var(--background-color);
  color: var(--color);
  font-size: 0.0001em;
  text-indent: -9999px;

  float: left;
  width: 100%;
  height: 100%;

  transition: color 100ms ease, background 100ms ease, text-shadow 100ms ease;
}

prompt[type="paper"] {
  --background-color: var(--white);
  --color: var(--black);
  text-shadow: #00000066 1px 1px 2px;
}
prompt[type="retro"] {
  --background-color: var(--black);
  --color: var(--green);
}
prompt[type="blueprint"] {
  --background-color: var(--blue);
  --color: var(--white);
  text-shadow: #ffffff55 2px 2px 1px;
}

prompt *:not(:is(b, i, u, span, a)) {
  display: none;
}
prompt a {
  cursor: pointer;
}
prompt a:hover {
  color: var(--white);
}
prompt[type="paper"] a:hover {
  color: var(--blue);
}
prompt[type="blueprint"] a:hover {
  color: var(--black);
}


prompt screen {
  display: block;
  float: left;
  width: 100%;
  height: 100%;

  font-family: 'Cascadia Mono', monospace;
  white-space: pre;

  font-size: 15px;
  line-height: 17.7px;
  letter-spacing: 0px;

  text-indent: 0;
  text-overflow: clip;
  overflow: hidden;
}