/* =========================================================================
   nicnonac-96 - retro.css
   hand-coded in auckland, nz. no framework, no build step beyond eleventy.
   1996-2006 web pastiche: web-safe GeoCities palette + Win9x window chrome.
   Tokens ported from _reference/retro-tokens.css; bevels from the React refs.
   Hard rules: no border-radius, 1-2px pixel bevels only.
   ========================================================================= */

:root {
  /* ---- Core system greys ---- */
  --r96-face: #c0c0c0;
  --r96-face-light: #dfdfdf;
  --r96-shadow: #808080;
  --r96-dark-shadow: #404040;
  --r96-highlight: #ffffff;

  /* ---- Desktop + chrome ---- */
  --r96-teal: #008080;
  --r96-title-blue-1: #000080;
  --r96-title-blue-2: #1084d0;
  --r96-title-text: #ffffff;

  /* ---- Web-safe accents ---- */
  --r96-link: #0000ee;
  --r96-visited: #551a8b;
  --r96-lime: #00ff00;
  --r96-magenta: #ff00ff;
  --r96-yellow: #ffff00;

  /* ---- Odometer / LED ---- */
  --r96-led-green: #33ff33;
  --r96-led-bg: #000000;

  /* ---- Font stacks ---- */
  --r96-pixel-stack: "Courier New", "Lucida Console", monospace;
  --r96-mono-stack: "Courier New", monospace;
  --r96-sys-stack: Verdana, Tahoma, "MS Sans Serif", Geneva, Arial, sans-serif;

  /* ---- Bevel primitives (2px double bevel via box-shadow) ---- */
  --r96-bevel-out:
    inset 1px 1px 0 var(--r96-highlight),
    inset -1px -1px 0 var(--r96-dark-shadow),
    inset 2px 2px 0 var(--r96-face-light),
    inset -2px -2px 0 var(--r96-shadow);
  --r96-bevel-in:
    inset 1px 1px 0 var(--r96-dark-shadow),
    inset -1px -1px 0 var(--r96-highlight),
    inset 2px 2px 0 var(--r96-shadow),
    inset -2px -2px 0 var(--r96-face-light);
  --r96-bevel-window:
    inset 1px 1px 0 var(--r96-highlight),
    inset -1px -1px 0 var(--r96-dark-shadow),
    inset 2px 2px 0 var(--r96-face),
    inset -2px -2px 0 var(--r96-shadow);
}

/* ===================== Base / reset ===================== */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

/* Classic system cursors, drawn from scratch (originals, not MS .cur files).
   Fallbacks keep touch devices and cursor-blocking browsers sane. */
html, body {
  cursor: url("/assets/retro/cursor_arrow.png") 0 0, default;
}
a, a *, button, button *, input[type="submit"], label, summary,
.webbadge a, .desktopicon, [role="button"] {
  cursor: url("/assets/retro/cursor_hand.png") 7 0, pointer;
}

body {
  background: var(--r96-teal);
  font-family: var(--r96-sys-stack);
  font-size: 13px;
  line-height: 1.4;
  color: #000;
  /* Faint starfield behind the whole desktop, pure CSS, no asset. */
  background-color: #000018;
  background-image:
    radial-gradient(1px 1px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 60px 70px, #cfe8ff, transparent),
    radial-gradient(1px 1px at 100px 40px, #fff, transparent),
    radial-gradient(1px 1px at 140px 90px, #9fd0ff, transparent);
  background-repeat: repeat;
  background-size: 160px 120px;
}

a { color: var(--r96-link); }
a:visited { color: var(--r96-visited); }

img { max-width: 100%; }

/* ===================== Bevel utilities ===================== */

.r96-outset {
  background: var(--r96-face);
  border: 0;
  border-radius: 0;
  box-shadow: var(--r96-bevel-out);
}
.r96-inset {
  background: var(--r96-highlight);
  border: 0;
  border-radius: 0;
  box-shadow: var(--r96-bevel-in);
}
.r96-window-edge {
  background: var(--r96-face);
  border: 0;
  border-radius: 0;
  box-shadow: var(--r96-bevel-window);
}
.r96-divider {
  height: 0;
  margin: 6px 0;
  border: 0;
  border-top: 1px solid var(--r96-shadow);
  border-bottom: 1px solid var(--r96-highlight);
}

/* ===================== Typography helpers ===================== */

.r96-pixel { font-family: var(--r96-pixel-stack); letter-spacing: 0.02em; }
.r96-mono { font-family: var(--r96-mono-stack); }

/* ===================== Netscape outer frame ===================== */

.browser {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3px;
}
.browser__titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 4px;
  background: linear-gradient(90deg, var(--r96-title-blue-1), var(--r96-title-blue-2));
  color: var(--r96-title-text);
  font-weight: 700;
  font-size: 13px;
}
.browser__titlebar .spacer { flex: 1; }
.browser__titlebtns { display: flex; gap: 2px; }
.browser__titlebtn {
  width: 18px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; line-height: 1; color: #000;
  background: var(--r96-face); box-shadow: var(--r96-bevel-out);
}
.browser__menubar {
  display: flex; gap: 14px;
  padding: 2px 8px; font-size: 12px;
}
.browser__menubar u { text-decoration: underline; }
.browser__toolbar {
  display: flex; gap: 4px; align-items: stretch;
  padding: 4px 6px;
}
.browser__urlbar {
  display: flex; align-items: center; gap: 6px;
  padding: 3px 6px; font-size: 12px;
}
.browser__urlbar .label { color: #000; }
.browser__urlbar .field {
  flex: 1;
  background: #fff; box-shadow: var(--r96-bevel-in);
  padding: 3px 6px; font-family: var(--r96-mono-stack); font-size: 12px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.toolbtn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 46px; padding: 3px 6px; gap: 2px;
  font-size: 11px; color: #000; text-decoration: none;
  background: var(--r96-face); box-shadow: var(--r96-bevel-out);
}
.toolbtn .ico { font-size: 15px; line-height: 1; }
.toolbtn.is-disabled { color: var(--r96-shadow); }

/* ===================== Hero wordmark banner ===================== */

.hero {
  position: relative;
  background: #05001f;
  overflow: hidden;
}
.hero__img { display: block; width: 100%; height: auto; }
/* Progressive-enhancement shine video sits on top of the static wordmark. */
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}

/* ===================== Marquee strips ===================== */

@keyframes r96-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: #000;
  padding: 3px 0;
  border-top: 2px solid var(--r96-yellow);
  border-bottom: 2px solid var(--r96-yellow);
}
.marquee--plain { border-color: var(--r96-lime); }
.marquee__track {
  display: inline-flex;
  min-width: 100%;
  width: max-content;
  will-change: transform;
  animation: r96-marquee var(--marquee-dur, 18s) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track > span { padding-right: 48px; }
.marquee .hot { color: var(--r96-yellow); }
.marquee .go { color: var(--r96-lime); }
.marquee .pink { color: var(--r96-magenta); }

/* ===================== Blink ===================== */

@keyframes r96-blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }
.blink { animation: r96-blink 1s steps(1) infinite; }

/* ===================== Desktop panel (page body over stars) ===================== */

.desk {
  position: relative;
  padding: 16px;
  min-height: 200px;
  /* the deep-space nebula feel: layered radial glows over the star tile */
  background-color: #0a0a2a;
  background-image:
    radial-gradient(closest-side at 25% 30%, rgba(80,40,140,.45), transparent),
    radial-gradient(closest-side at 78% 55%, rgba(30,90,160,.40), transparent),
    radial-gradient(1px 1px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 60px 70px, #cfe8ff, transparent),
    radial-gradient(1px 1px at 100px 40px, #fff, transparent),
    radial-gradient(1px 1px at 140px 90px, #9fd0ff, transparent);
  background-repeat: no-repeat, no-repeat, repeat, repeat, repeat, repeat;
  background-size: auto, auto, 160px 120px, 160px 120px, 160px 120px, 160px 120px;
}

/* ===================== Big nav buttons ===================== */

.navbtns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 12px 0 20px;
}
.navbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 150px;
  min-height: 62px;
  padding: 10px 18px;
  font-family: var(--r96-sys-stack);
  font-size: 20px;
  font-weight: 700;
  color: var(--r96-title-blue-1);
  text-decoration: none;
  background: var(--r96-face);
  box-shadow: var(--r96-bevel-out);
}
.navbtn:visited { color: var(--r96-title-blue-1); }
.navbtn:active { box-shadow: var(--r96-bevel-in); }

/* ===================== Webmaster photo card ===================== */

.webmaster {
  width: 200px;
  padding: 4px;
  background: var(--r96-face);
  box-shadow: var(--r96-bevel-out);
}
.webmaster__cap {
  text-align: center;
  font-weight: 700;
  padding: 2px 0 4px;
}
.webmaster__frame {
  padding: 4px;
  background: #ffd700;
  box-shadow: var(--r96-bevel-in);
}
.webmaster__frame img { display: block; width: 100%; height: auto; }

/* ===================== LED hit counter ===================== */

.hitcounter {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hitcounter__label { font-weight: 700; }
.hitcounter__leds {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: var(--r96-led-bg);
  box-shadow: var(--r96-bevel-in);
}
.hitcounter__leds .d {
  width: 18px;
  text-align: center;
  font-family: var(--r96-mono-stack);
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  color: var(--r96-led-green);
  background: #031a03;
  text-shadow: 0 0 4px var(--r96-led-green);
}
.hitcounter__leds .d.last { color: #fff; background: #0a3a0a; }

/* ===================== Badge column ===================== */

.badges { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.badge {
  display: inline-flex;
  padding: 2px;
  background: var(--r96-face);
  box-shadow: var(--r96-bevel-out);
  line-height: 0;
}
.badge img { display: block; width: 132px; height: auto; image-rendering: pixelated; }
.badge--asterisk { position: relative; }
.badge__star {
  position: absolute; top: -7px; right: -5px;
  font-family: var(--r96-pixel-stack); font-size: 16px; line-height: 1;
  color: var(--r96-yellow); text-shadow: 1px 1px 0 #000;
}

/* ===================== Under construction ===================== */

.underconstruction { text-align: center; margin: 12px 0; }
.underconstruction img { width: 200px; image-rendering: pixelated; }

/* ===================== Rainbow section headings ===================== */

.rainbow {
  font-family: var(--r96-sys-stack);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
  /* per-letter rainbow via background-clip on a repeating gradient */
  background: linear-gradient(90deg,
    #ff0000, #ff8800, #ffee00, #00cc22, #0088ff, #8800ff, #ff00cc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(0,0,0,.35);
  text-shadow: 1px 1px 0 rgba(0,0,0,.25);
}

/* ===================== Content panels (grey table-look) ===================== */

.panelgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.panel {
  background: var(--r96-face);
  box-shadow: var(--r96-bevel-out);
  padding: 12px;
}
.panel--wide { grid-column: 1 / -1; }
.panel__body { font-size: 13px; }

/* Real body copy stays in Nic's register: keep it plain and readable. */
.bodycopy { font-size: 13px; line-height: 1.5; color: #000; }
.bodycopy p { margin: 0 0 10px; }

/* ===================== Reels / thumbnail grid ===================== */

.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.thumb { text-align: center; }
.thumb__frame {
  position: relative;
  background: #000; box-shadow: var(--r96-bevel-in);
  padding: 3px; aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  color: var(--r96-lime); font-family: var(--r96-mono-stack); font-size: 11px;
  overflow: hidden;
}
.thumb__play {
  position: absolute; right: 5px; bottom: 5px;
  background: var(--r96-face); box-shadow: var(--r96-bevel-out);
  font-size: 10px; padding: 1px 5px; color: #000;
}
.thumb__cap { font-size: 12px; margin-top: 4px; }

/* ===================== Cool links list ===================== */

.coollinks { list-style: none; margin: 0; padding: 0; }
.coollinks li { margin: 6px 0; font-size: 15px; font-weight: 700; }
.coollinks a { text-decoration: underline; }
.coollinks .arrow { color: var(--r96-lime); }

/* ===================== Guestbook / contact form ===================== */

.gform { display: block; }
.gform .row { margin: 0 0 10px; }
.gform label { display: block; font-weight: 700; margin: 0 0 3px; }
.gform input[type="text"],
.gform input[type="email"],
.gform textarea {
  width: 100%;
  background: #fff;
  box-shadow: var(--r96-bevel-in);
  border: 0; border-radius: 0;
  padding: 5px 7px;
  font-family: var(--r96-sys-stack); font-size: 13px;
}
.gform textarea { min-height: 90px; resize: vertical; }
.btn96 {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 24px; padding: 5px 16px;
  font-family: var(--r96-sys-stack); font-size: 13px; font-weight: 700;
  color: #000; cursor: pointer;
  background: var(--r96-face); box-shadow: var(--r96-bevel-out);
}
.btn96:active { box-shadow: var(--r96-bevel-in); }
.gform__ok {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--r96-face);
  box-shadow: var(--r96-bevel-out);
  font-weight: 700;
}

/* ===================== Window (generic, for subpages) ===================== */

.win { background: var(--r96-face); box-shadow: var(--r96-bevel-window); padding: 3px; }
.win__title {
  display: flex; align-items: center; gap: 6px;
  padding: 3px 4px 3px 6px;
  background: linear-gradient(90deg, var(--r96-title-blue-1), var(--r96-title-blue-2));
  color: var(--r96-title-text); font-weight: 700; font-size: 13px;
}
.win__title .spacer { flex: 1; }
.win__title .tb {
  width: 18px; height: 16px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; color: #000; background: var(--r96-face); box-shadow: var(--r96-bevel-out);
}
.win__body { padding: 14px; background: var(--r96-face); }
.win__body--inset { margin: 4px; padding: 16px; background: #fff; box-shadow: var(--r96-bevel-in); }

/* ===================== File explorer (guides index) ===================== */

.explorer { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.folder {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 10px; text-decoration: none; color: #000;
  background: var(--r96-face); box-shadow: var(--r96-bevel-out);
  text-align: center;
}
.folder .ico { font-size: 34px; line-height: 1; }
.folder .name { font-size: 13px; font-weight: 700; }
.folder .meta { font-size: 11px; color: var(--r96-dark-shadow); }

/* ===================== Guide article body ===================== */

.article { font-size: 14px; line-height: 1.6; color: #000; max-width: 720px; }
.article h2 {
  font-size: 17px; margin: 22px 0 8px;
  border-bottom: 1px solid var(--r96-shadow); padding-bottom: 3px;
}
.article p { margin: 0 0 12px; }
.article code {
  font-family: var(--r96-mono-stack); font-size: 13px;
  background: #e8e8e8; padding: 1px 4px;
}
.article pre {
  background: #000; color: var(--r96-lime);
  font-family: var(--r96-mono-stack); font-size: 12px;
  padding: 10px 12px; overflow-x: auto;
  box-shadow: var(--r96-bevel-in);
}
.article pre code { background: transparent; color: inherit; padding: 0; }
.article ul, .article ol { margin: 0 0 12px; padding-left: 22px; }
.article li { margin: 4px 0; }

/* ===================== Mascot corner ===================== */

.mascot {
  position: fixed;
  right: 10px; bottom: 8px;
  z-index: 50;
  display: flex; align-items: flex-end; gap: 4px;
  pointer-events: none;
}
.mascot__bubble {
  position: relative;
  max-width: 180px;
  background: #fff; color: #000;
  box-shadow: var(--r96-bevel-out);
  padding: 8px 10px; font-size: 12px;
  margin-bottom: 30px;
}
.mascot__img { width: 92px; height: auto; image-rendering: pixelated; }

/* ===================== Status bar ===================== */

.statusbar {
  display: flex; gap: 2px; padding: 2px; background: var(--r96-face); font-size: 12px;
}
.statusbar .cell {
  display: inline-flex; align-items: center; padding: 2px 8px; min-height: 18px;
  background: var(--r96-face); box-shadow: var(--r96-bevel-in);
}
.statusbar .cell--grow { flex: 1; }

/* ===================== Footer ===================== */

.footer {
  text-align: center;
  padding: 12px;
  font-size: 12px;
  background: var(--r96-face);
  box-shadow: var(--r96-bevel-out);
  margin-top: 12px;
}

/* ===================== Velvet footer strip + badge wall ===================== */

.footer96 {
  background-color: #3a0a2e;
  background-image: url(../assets/retro/velvet_tile.png);
  background-repeat: repeat;
  background-size: 256px 256px;
  border-top: 3px ridge var(--r96-yellow);
  padding: 18px 12px 26px;
  text-align: center;
}
.footer96__inner { max-width: 1000px; margin: 0 auto; }
.footer96__copy {
  /* yellow serif, per spec — the one serif on the whole site, on purpose */
  font-family: "Times New Roman", Georgia, "Times", serif;
  color: var(--r96-yellow);
  font-size: 15px;
  margin: 0 0 14px;
  text-shadow: 1px 1px 0 #000;
}
.footer96__copy a { color: #fff; }
.footer96__fineprint {
  margin: 12px 0 0;
  font-family: "Times New Roman", Georgia, "Times", serif;
  color: #c9a0c9; /* dim against the velvet, you have to lean in */
  text-shadow: 1px 1px 0 #000;
}
.footer96__fineprint font { font-size: 10px; }
.footer96__copy a:visited { color: #ffd6ff; }
.footer96__badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; align-items: center;
}
.webbadge {
  display: inline-flex; padding: 3px;
  background: var(--r96-face); box-shadow: var(--r96-bevel-out);
  line-height: 0; text-decoration: none;
}
.webbadge img { display: block; width: 88px; height: 31px; image-rendering: pixelated; }
/* broken-image joke: a faked <img> placeholder, reliable across browsers */
.webbadge--broken {
  line-height: 1; align-items: center; gap: 6px; padding: 5px 8px;
  background: #fff; box-shadow: var(--r96-bevel-out);
  font-family: var(--r96-mono-stack); font-size: 12px; color: #000;
}
.brokenimg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; background: #fff; border: 1px solid var(--r96-shadow);
}
.brokenimg__x { color: #d00000; font-size: 13px; font-weight: 700; line-height: 1; }

/* ===================== Advertisement slot (grey bevel banner) ===================== */

.adrow { text-align: center; margin: 18px 0; }
.adslot {
  display: inline-block; max-width: 100%;
  padding: 3px 4px 4px;
  background: var(--r96-face); box-shadow: var(--r96-bevel-out);
}
.adslot__cap {
  font-family: var(--r96-mono-stack); font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--r96-shadow);
  text-align: center; margin: 0 0 3px;
}
.adslot__frame {
  display: block; padding: 3px; line-height: 0;
  background: #000; box-shadow: var(--r96-bevel-in);
}
.adslot__frame img {
  display: block; width: 468px; max-width: 100%; height: auto;
  image-rendering: pixelated;
}

/* ===================== Spinning globe (steps sprite via 4 frames) ===================== */

@keyframes r96-globe {
  0% { background-image: url(../assets/retro/globe_1.png); }
  25% { background-image: url(../assets/retro/globe_2.png); }
  50% { background-image: url(../assets/retro/globe_3.png); }
  75% { background-image: url(../assets/retro/globe_4.png); }
  100% { background-image: url(../assets/retro/globe_1.png); }
}
.globe {
  width: 52px; height: 52px;
  background-size: contain; background-repeat: no-repeat; background-position: center;
  background-image: url(../assets/retro/globe_1.png);
  image-rendering: pixelated;
  animation: r96-globe 0.6s steps(1) infinite;
}

/* ===================== Boot / dial-up overlay (injected by JS) ===================== */

.boot {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--r96-teal);
  background-color: #000018;
  background-image:
    radial-gradient(1px 1px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 60px 70px, #cfe8ff, transparent),
    radial-gradient(1px 1px at 100px 40px, #fff, transparent);
  background-size: 160px 120px;
  display: flex; align-items: center; justify-content: center;
}
.boot__dialog { width: 360px; max-width: 92vw; }
.boot__body { padding: 16px; }
.boot__msg { font-size: 13px; margin: 0 0 12px; }
.boot__bar {
  height: 18px; background: #fff; box-shadow: var(--r96-bevel-in); padding: 2px;
}
.boot__fill {
  height: 100%; width: 0%;
  background: repeating-linear-gradient(90deg,
    var(--r96-title-blue-1) 0 10px, var(--r96-title-blue-2) 10px 12px);
  transition: width .2s linear;
}
.boot__btns { display: flex; gap: 10px; align-items: center; margin-top: 14px; }
.boot__skip { font-size: 12px; }

/* ===================== Utility ===================== */

.center { text-align: center; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.hidden { display: none !important; }
.decor { image-rendering: pixelated; }
.sidebar { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* Homepage top zone: nav + webmaster + counter */
.topzone {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  align-items: start;
}
.topzone__main { min-width: 0; }

/* Homepage lower layout: sidebar + content grid */
.mainzone {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  margin-top: 16px;
  align-items: start;
}

/* ===================== Reduced motion ===================== */

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; transform: none; }
  .blink { animation: none; opacity: 1; }
  .globe { animation: none; }
}

/* ===================== Mobile (390px target) ===================== */

@media (max-width: 640px) {
  body { font-size: 13px; }
  .browser__menubar { flex-wrap: wrap; gap: 8px; }
  .browser__toolbar { flex-wrap: wrap; }
  .topzone { grid-template-columns: 1fr; }
  .topzone__side { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
  .mainzone { grid-template-columns: 1fr; }
  .panelgrid { grid-template-columns: 1fr; }
  .navbtns { gap: 10px; }
  .navbtn { min-width: 45%; font-size: 18px; }
  .thumbs { grid-template-columns: repeat(2, 1fr); }
  .rainbow { font-size: 22px; }
  .mascot { display: none; } /* the floppy gets out of the way on small screens */
  .sidebar { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
