/* mrz.dev */
:root {
  --green: #00ff41;
  --font: ui-monospace, "Cascadia Mono", Consolas, "SF Mono", Menlo, "DejaVu Sans Mono", "Liberation Mono", monospace;
  --side: min(72vh, 88vw);
  --mark: 24px;
  color-scheme: dark;
}
@supports (height: 1dvh) {
  :root { --side: min(72dvh, 88vw); }
}
html, body {
  height: 100%;
  margin: 0;
  background: #000;
  color: var(--green);
  font-family: var(--font);
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}
#rain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 75% 75% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,.65) 100%);
}
@media (orientation: portrait) {
  .vignette {
    background: radial-gradient(ellipse 120% 62% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,.65) 100%);
  }
}
main {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.panel {
  width: var(--side);
  aspect-ratio: 1;
  box-sizing: border-box;
  padding: calc(var(--side) * .05) calc(var(--side) * .06) calc(var(--side) * .08);
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(0,255,65,.22);
  box-shadow: inset 0 0 40px rgba(0,0,0,.35);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.inner {
  width: 100%;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mark {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--font);
  font-size: calc(100cqw / 28 / 0.58);
  line-height: 1.1;
  font-variant-ligatures: none;
  white-space: pre;
  color: var(--green);
  font-weight: 400;
  text-shadow: 0 0 .28em rgba(0,255,65,.45);
  user-select: none;
  -webkit-user-select: none;
}
.sub {
  margin-top: calc(var(--mark) * 0.9);
  padding-top: calc(var(--mark) * 0.45);
  width: 100%;
  border-top: 1px solid rgba(0,255,65,.15);
  text-align: center;
  font-size: max(11px, calc(var(--mark) * 0.42));
  letter-spacing: .35em;
  text-indent: .35em;
  color: rgba(0,255,65,.65);
  user-select: none;
  -webkit-user-select: none;
}
.sub a {
  color: inherit;
  text-decoration: none;
}
.sub a:hover, .sub a:focus-visible {
  color: var(--green);
  outline: none;
}
