

:root {
  --basement: #2d2922;
  --wall: #c2b58e;
  --paper: #eee2b8;
  --paper-dark: #d3bf83;
  --mustard: #b99033;
  --hoodie: #c6a344;
  --rust: #a13b2e;
  --red: #d5332e;
  --ink: #17140f;
  --crt: #9ff7cf;
  --monitor: #5d706e;
  --dirty-white: #fff7d8;
}

@theme inline {
  --color-background: var(--basement);
  --color-foreground: var(--ink);
  --font-sans: var(--font-hand);
  --font-mono: var(--font-crt);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 237, 152, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    var(--basement);
  background-size: auto, 42px 42px, 42px 42px, auto;
  color: var(--ink);
  font-family: var(--font-hand), "Comic Sans MS", "Bradley Hand", cursive;
  letter-spacing: 0;
}

button,
a {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 5px
    ),
    radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.26));
  mix-blend-mode: soft-light;
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-content: center;
  gap: 0.45rem;
  border: 0;
  background: #06110e;
  color: var(--crt);
  font-family: var(--font-crt), "Courier New", monospace;
  font-size: clamp(1rem, 3vw, 2.1rem);
  text-align: left;
  cursor: pointer;
  text-shadow: 0 0 12px rgba(159, 247, 207, 0.75);
  animation: boot-pop 1.9s steps(2, end) forwards;
}

.boot-screen b {
  color: #f0ff96;
  font-weight: 400;
}

@keyframes boot-pop {
  0%,
  84% {
    opacity: 1;
  }
  94% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.kat-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem clamp(0.55rem, 2vw, 1.5rem);
  border-bottom: 4px solid var(--ink);
  background: #d7d0b2;
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.24);
}

.nav-brand,
.nav-buy,
.nav-links a,
.status,
.nav-menu summary,
.nav-menu a {
  border: 3px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-brand {
  flex: 0 0 auto;
  padding: 0.32rem 0.65rem;
  background: var(--red);
  color: var(--dirty-white);
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  flex: 1 1 auto;
  gap: 0.45rem;
}

.nav-links a {
  padding: 0.28rem 0.5rem;
  background: var(--paper);
  font-size: 0.92rem;
  white-space: nowrap;
}

.status {
  padding: 0.28rem 0.55rem;
  background: #101713;
  color: var(--crt);
  font-family: var(--font-crt), "Courier New", monospace;
  white-space: nowrap;
  animation: blink 1s steps(2, end) infinite;
}

.nav-buy {
  padding: 0.35rem 0.72rem;
  background: var(--hoodie);
  white-space: nowrap;
}

.nav-menu {
  display: none;
  position: relative;
}

.nav-menu summary {
  list-style: none;
  padding: 0.3rem 0.55rem;
  background: var(--paper);
  cursor: pointer;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu div {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  display: grid;
  gap: 0.45rem;
  width: min(72vw, 16rem);
  padding: 0.7rem;
  border: 4px solid var(--ink);
  background: #d7d0b2;
  box-shadow: 6px 6px 0 var(--ink);
}

.nav-menu a {
  padding: 0.4rem 0.55rem;
  background: var(--paper);
}

.major-section {
  position: relative;
  min-height: 92vh;
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 6.5rem);
  border-bottom: 5px solid var(--ink);
}

.major-section h1,
.major-section h2,
.major-section h3,
.what-if {
  margin: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.major-section h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 12vw, 10.5rem);
}

.major-section h2 {
  font-size: clamp(2.35rem, 5.4vw, 6.1rem);
}

.major-section h3 {
  font-size: clamp(1.8rem, 4vw, 3.7rem);
}

.section-copy,
.hero-copy,
.rabbit-copy,
.buy-panel {
  position: relative;
  z-index: 2;
}

.section-copy {
  max-width: 44rem;
  padding: clamp(1.25rem, 2.7vw, 2.5rem);
  border: 4px solid var(--ink);
  background: rgba(238, 226, 184, 0.95);
  box-shadow: 8px 8px 0 var(--ink);
}

.section-copy p,
.rabbit-copy p,
.buy-panel p {
  font-size: clamp(1.25rem, 1.65vw, 1.6rem);
  line-height: 1.18;
}

.section-copy h2,
.buy-panel h2,
.rabbit-copy h2 {
  font-size: clamp(2.45rem, 4.6vw, 5.15rem);
  line-height: 0.96;
}

.section-copy h3,
.rabbit-copy h3 {
  margin-top: 0.7rem;
  font-size: clamp(1.85rem, 3.3vw, 3.3rem);
}

.label,
.ticker-stamp {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.55rem;
  border: 3px solid var(--ink);
  background: var(--red);
  color: var(--dirty-white);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-2deg);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.buy-button,
.curious-button {
  min-height: 3.3rem;
  border: 4px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--ink);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.buy-button {
  display: inline-grid;
  place-items: center;
  padding: 0.62rem 1rem;
  background: var(--hoodie);
}

.curious-button {
  display: inline-grid;
  place-items: center;
  padding: 0.62rem 1rem;
  background: var(--paper);
}

.curious-button:hover span {
  display: none;
}

.curious-button:hover::after {
  content: "DON'T.";
}

.buy-button:hover,
.curious-button:hover {
  transform: translate(3px, 3px) rotate(-1deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.cta-row.red .curious-button,
.cta-row.red .buy-button {
  border-radius: 999px;
  background: var(--red);
  color: var(--dirty-white);
}

.cta-row.crt .curious-button,
.cta-row.crt .buy-button {
  background: #111a17;
  color: var(--crt);
  font-family: var(--font-crt), "Courier New", monospace;
  text-shadow: 0 0 8px rgba(159, 247, 207, 0.8);
}

.cta-row.note .curious-button,
.cta-row.note .buy-button {
  background: var(--dirty-white);
  transform: rotate(-1deg);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(19rem, 0.48fr) minmax(20rem, 0.52fr);
  align-items: center;
  min-height: calc(100vh - 3.4rem);
  padding-top: clamp(5rem, 7vw, 7rem);
  background: #7e7460;
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 56%;
  filter: saturate(0.95) contrast(1.04);
}

.hero-grime {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(194, 181, 142, 0.96) 0%, rgba(194, 181, 142, 0.8) 28%, rgba(194, 181, 142, 0.08) 58%),
    linear-gradient(0deg, rgba(23, 20, 15, 0.44) 0%, transparent 34%, rgba(255, 247, 216, 0.22) 100%);
}

.hero-copy {
  align-self: start;
  max-width: 36rem;
  margin-top: clamp(1rem, 5vh, 4rem);
  padding: clamp(1rem, 2.8vw, 2rem);
  border: 5px solid var(--ink);
  background: rgba(255, 247, 216, 0.9);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.82);
  transform: rotate(-1.2deg);
}

.hero-copy h1 {
  max-width: 9.5ch;
  font-size: clamp(3.1rem, 6.4vw, 7.2rem);
  line-height: 0.88;
}

.nine {
  display: inline-block;
  margin: 0.8rem 0 0.35rem;
  padding: 0.25rem 0.55rem;
  border: 3px solid rgba(23, 20, 15, 0.2);
  background: #fff4c8;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  transform: rotate(1deg);
}

.what-if {
  color: var(--red);
  font-size: clamp(4rem, 15vw, 13rem);
  text-shadow: 5px 5px 0 var(--ink);
}

.hero-stamp {
  position: absolute;
  right: clamp(1rem, 6vw, 7rem);
  bottom: clamp(7rem, 11vw, 12rem);
  z-index: 2;
  max-width: 5ch;
  transform: rotate(-8deg);
  pointer-events: none;
}

.warning-sticker {
  position: absolute;
  left: clamp(1rem, 7vw, 7rem);
  bottom: clamp(1.6rem, 5vw, 4rem);
  z-index: 2;
  display: inline-block;
  max-width: 19rem;
  padding: 0.48rem 0.62rem;
  border: 3px solid var(--ink);
  background: #f8f09c;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(4deg);
}

.floating-eyes {
  position: absolute;
  top: clamp(5rem, 13vh, 9rem);
  right: clamp(1rem, 6vw, 7rem);
  z-index: 4;
  display: flex;
  gap: 0.55rem;
  padding: 0.7rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: rgba(16, 23, 19, 0.82);
  transition: transform 120ms linear;
}

.floating-eyes i {
  width: 1.35rem;
  height: 1.35rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #e7a63a;
}

.question-rain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.question-rain span {
  position: absolute;
  color: rgba(156, 39, 32, 0.7);
  font-size: clamp(2rem, 7vw, 7rem);
}

.question-rain span:nth-child(1) {
  top: 14%;
  left: 53%;
}

.question-rain span:nth-child(2) {
  top: 72%;
  left: 13%;
}

.question-rain span:nth-child(3) {
  top: 54%;
  left: 79%;
}

.question-rain span:nth-child(4) {
  top: 28%;
  left: 34%;
}

.question-rain span:nth-child(5) {
  top: 82%;
  left: 62%;
}

.question-rain span:nth-child(n + 6) {
  top: 39%;
  left: 8%;
}

.button-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(26rem, 1.28fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
  background: #ada184;
}

.taped-copy {
  transform: rotate(-1.3deg);
}

.wide-panel {
  width: 100%;
  border: 5px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.72);
  transform: rotate(1.5deg);
}

.button-section s {
  color: var(--red);
  text-decoration-thickness: 0.16em;
}

.alarm {
  position: absolute;
  top: 5rem;
  width: 4.2rem;
  height: 4.2rem;
  border: 4px solid var(--ink);
  border-radius: 50% 50% 8px 8px;
  background: #61100e;
}

.alarm-left {
  left: 3vw;
}

.alarm-right {
  right: 4vw;
}

.panic .alarm {
  animation: alarm 160ms steps(2, end) infinite;
}

.panic {
  animation: shake 100ms linear 5;
}

.box-section {
  display: grid;
  grid-template-columns: minmax(26rem, 1.08fr) minmax(22rem, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  background: #7e7769;
}

.browser-window {
  position: relative;
  z-index: 2;
  border: 4px solid var(--ink);
  background: #ece7d4;
  box-shadow: 8px 8px 0 var(--ink);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 2.2rem;
  padding: 0.28rem 0.45rem;
  border-bottom: 4px solid var(--ink);
  background: #1f77d1;
}

.browser-dot {
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.browser-dot.red {
  background: #e74737;
}

.browser-dot.yellow {
  background: #f2c84b;
}

.browser-dot.green {
  background: #5bb85a;
}

.browser-address {
  min-width: 0;
  margin-left: 0.35rem;
  padding: 0.12rem 0.35rem;
  overflow: hidden;
  background: #f6f0df;
  font-family: var(--font-crt), "Courier New", monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tilt-left {
  transform: rotate(-1.5deg);
}

.tilt-right {
  transform: rotate(2deg);
}

.scribble {
  display: inline-block;
  margin: 0.2rem 0 0.6rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  transform: rotate(-3deg);
}

.box-flap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 19rem);
  min-height: 8rem;
  margin-top: 1rem;
  border: 4px solid var(--ink);
  background: #b5844f;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 7px 7px 0 var(--ink);
}

.box-flap::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 3px dashed rgba(0, 0, 0, 0.45);
}

.box-flap.open {
  background: #bfff55;
  box-shadow:
    0 0 34px rgba(190, 255, 85, 0.9),
    7px 7px 0 var(--ink);
}

.box-flap img {
  position: absolute;
  right: -3rem;
  bottom: -2rem;
  width: 8rem;
  transform: rotate(8deg);
}

.rabbit-section {
  min-height: 120vh;
  background: #292f44;
  color: var(--dirty-white);
}

.rabbit-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.rabbit-copy {
  max-width: 46rem;
  padding: clamp(1.35rem, 3vw, 2.5rem);
  border: 5px solid var(--ink);
  background: rgba(23, 20, 15, 0.82);
  color: var(--dirty-white);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.85);
  transform: rotate(-1deg);
}

.rabbit-copy h2 {
  color: #f8f09c;
}

.rabbit-copy ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.04;
}

.spawned-tabs {
  position: absolute;
  inset: auto clamp(1rem, 5vw, 5rem) 5rem auto;
  z-index: 3;
  display: grid;
  gap: 1rem;
  width: min(44rem, 92vw);
}

.spawned-tabs .browser-window {
  max-width: 21rem;
}

.spawned-tabs .browser-window:nth-child(even) {
  justify-self: end;
}

.fake-window-text {
  margin: 0;
  padding: 0.9rem;
  color: var(--ink);
  font-family: var(--font-crt), "Courier New", monospace;
  font-size: 1.25rem;
}

.board-section {
  display: grid;
  grid-template-columns: minmax(34rem, 1.1fr) minmax(26rem, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
  background: #8e836d;
}

.board-section .section-copy {
  max-width: 36rem;
}

.board-section .section-copy h2 {
  font-size: clamp(2.3rem, 3.9vw, 4.85rem);
}

.board-wall {
  position: relative;
  z-index: 2;
  min-height: 32rem;
  border: 5px solid var(--ink);
  background: #d6cfb5;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.7);
  transform: rotate(-1deg);
  overflow: hidden;
}

.board-main {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  object-fit: cover;
}

.sticky {
  position: absolute;
  z-index: 3;
  padding: 0.45rem 0.65rem;
  border: 3px solid var(--ink);
  background: #fff394;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
}

.sticky.one {
  top: 7%;
  left: 4%;
  transform: rotate(-6deg);
}

.sticky.two {
  top: 63%;
  right: 12%;
  transform: rotate(5deg);
}

.sticky.three {
  right: 3%;
  top: 19%;
  transform: rotate(-2deg);
}

.string {
  position: absolute;
  z-index: 2;
  height: 4px;
  background: var(--red);
  transform-origin: left center;
}

.string.a {
  width: 60%;
  top: 24%;
  left: 13%;
  transform: rotate(18deg);
}

.string.b {
  width: 46%;
  top: 63%;
  left: 24%;
  transform: rotate(-25deg);
}

.string.c {
  width: 62%;
  top: 45%;
  left: 5%;
  transform: rotate(2deg);
}

.lives-section {
  display: grid;
  grid-template-columns: minmax(27rem, 1.08fr) minmax(22rem, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  background: #b9af91;
}

.gallery-section {
  min-height: auto;
  background: #d2c38f;
}

.gallery-section h2 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
}

.reaction-strip {
  position: relative;
  min-height: 34rem;
}

.reaction {
  position: absolute;
  width: min(31vw, 21rem);
  filter: drop-shadow(8px 8px 0 rgba(0, 0, 0, 0.72));
}

.r0 {
  left: 0;
  top: 3rem;
  transform: rotate(-8deg);
}

.r1 {
  left: 16%;
  top: 0;
  transform: rotate(5deg);
}

.r2 {
  left: 34%;
  top: 5rem;
  transform: rotate(-2deg);
}

.r3 {
  right: 20%;
  top: 1rem;
  transform: rotate(4deg);
}

.r4 {
  right: 4%;
  top: 4rem;
  transform: rotate(-5deg);
}

.r5 {
  left: 48%;
  top: 11rem;
  transform: rotate(8deg);
}

.buy-section {
  display: grid;
  place-items: center;
  min-height: 105vh;
  background: #514a3e;
  overflow: hidden;
}

.buy-cat {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}

.buy-panel {
  width: min(44rem, 92vw);
  padding: clamp(1.4rem, 3vw, 2.7rem);
  border: 5px solid var(--ink);
  background: rgba(238, 226, 184, 0.92);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1deg);
}

@keyframes blink {
  50% {
    opacity: 0.55;
  }
}

@keyframes alarm {
  50% {
    background: #ff2f23;
    box-shadow: 0 0 42px #ff2f23;
  }
}

@keyframes shake {
  50% {
    transform: translateX(7px);
  }
}

@media (max-width: 1180px) {
  .hero-section {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 100vh;
  }

  .hero-copy {
    max-width: min(34rem, 72vw);
  }

  .hero-scene {
    object-position: 62% 54%;
  }

  .hero-grime {
    background:
      linear-gradient(90deg, rgba(194, 181, 142, 0.98) 0%, rgba(194, 181, 142, 0.74) 38%, rgba(194, 181, 142, 0.04) 72%),
      linear-gradient(0deg, rgba(23, 20, 15, 0.5) 0%, transparent 40%, rgba(255, 247, 216, 0.18) 100%);
  }

  .hero-stamp {
    right: clamp(1rem, 4vw, 3rem);
    bottom: clamp(6rem, 11vw, 9rem);
  }

  .button-section,
  .box-section,
  .board-section,
  .lives-section {
    grid-template-columns: 1fr;
  }

  .button-section .section-copy,
  .board-section .section-copy,
  .lives-section .section-copy {
    order: -1;
  }

  .section-copy,
  .board-section .section-copy {
    max-width: 52rem;
  }

  .board-wall,
  .board-main {
    min-height: 26rem;
  }
}

@media (max-width: 920px) {
  .nav-links,
  .status {
    display: none;
  }

  .nav-menu {
    display: block;
  }

  .kat-nav {
    justify-content: space-between;
  }

  .hero-scene {
    opacity: 1;
  }

  .hero-copy {
    max-width: min(34rem, 88vw);
    margin-top: 2rem;
  }

  .spawned-tabs {
    position: relative;
    inset: auto;
    margin-top: 2rem;
  }

  .reaction-strip {
    min-height: 58rem;
  }

  .reaction {
    width: min(66vw, 18rem);
  }

  .r0 {
    left: 0;
    top: 1rem;
  }

  .r1 {
    left: auto;
    right: 0;
    top: 8rem;
  }

  .r2 {
    left: 5%;
    top: 17rem;
  }

  .r3 {
    right: 3%;
    top: 27rem;
  }

  .r4 {
    left: 2%;
    top: 37rem;
    right: auto;
  }

  .r5 {
    left: auto;
    right: 0;
    top: 44rem;
  }
}

@media (max-width: 560px) {
  .major-section {
    min-height: auto;
    padding: 5rem 0.9rem 4rem;
  }

  .major-section h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .hero-section {
    min-height: 45rem;
    padding-top: 4.3rem;
  }

  .hero-scene {
    object-position: 66% 58%;
  }

  .hero-grime {
    background:
      linear-gradient(180deg, rgba(194, 181, 142, 0.98) 0%, rgba(194, 181, 142, 0.86) 36%, rgba(194, 181, 142, 0.12) 70%),
      linear-gradient(0deg, rgba(23, 20, 15, 0.52) 0%, transparent 48%);
  }

  .hero-copy {
    max-width: 94vw;
    padding: 0.95rem;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.82);
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 15vw, 4.9rem);
  }

  .hero-stamp {
    right: 1rem;
    bottom: 6.4rem;
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .warning-sticker {
    left: 1rem;
    bottom: 1.1rem;
    max-width: 16rem;
  }

  .major-section h2 {
    font-size: clamp(2.25rem, 13vw, 4rem);
  }

  .what-if {
    font-size: clamp(4rem, 24vw, 6.5rem);
  }

  .section-copy,
  .buy-panel {
    padding: 1rem;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .cta-row {
    display: grid;
  }

  .buy-button,
  .curious-button {
    width: 100%;
  }

  .floating-eyes {
    top: 5.4rem;
    right: 1rem;
  }

  .alarm {
    display: none;
  }
}


body {
  --font-hand: 'Patrick Hand', 'Comic Sans MS', 'Bradley Hand', cursive;
  --font-crt: 'VT323', 'Courier New', monospace;
}
