@charset "UTF-8";
@font-face {
  font-family: "Lunchtype";
  src: url("/assets/fonts/lunchtype22-regular-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "Lunchtype";
  font-weight: medium;
  font-stretch: expanded;
  src: url("/assets/fonts/lunchtype24-medium-expanded-webfont-woff2") format("woff2");
}
@font-face {
  font-family: "Lunchtype";
  font-stretch: expanded;
  src: url("/assets/fonts/lunchtype24-regular-expanded-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "Merchant Copy";
  src: url("/assets/fonts/MerchantCopy.woff2") format("woff2");
}
@font-face {
  font-family: "ElliotSix";
  src: url("/assets/fonts/ElliotSix-webfont.woff") format("woff");
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/InstrumentSerif-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  src: url("/assets/fonts/InstrumentSerif-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "SB Modem";
  src: url("/assets/fonts/SB Modem W01 Regular.ttf") format("truetype");
}
@font-face {
  font-family: "ProggyClean";
  src: url("/assets/fonts/ProggyCleanCENerdFont-Regular.ttf") format("truetype");
}
html {
  scrollbar-width: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  transition: all ease 200ms;
}

@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
html {
  height: 100%;
}

*:first-child {
  margin-block-start: 0;
}

*:last-child {
  margin-block-end: 0;
}

body {
  margin: 0;
  min-height: 100%;
  font-size: 0.9rem;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.2;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: 100%;
}

:target {
  scroll-margin-block: 5ex;
}

img {
  width: 100%;
  height: auto;
}

:root {
  --ss-font: 'Lunchtype', 'Lunchtype Fallback', sans-serif;
  --mcr: 'Merchant Copy', 'Merchant Copy Fallback', monospace;
  --hand-font: 'ElliotSix', 'ElliotSix Fallback', sans-serif;
  --pixel-font: 'ProggyClean', 'ProggyClean fallback', monospace;
  --s-font: 'Instrument Serif', 'Instrument Serif Fallback', serif;
  --black: 220 10% 20%;
  --white: 0 0% 94.5%;
  --yellow: 51 78.7% 77%;
  --gray: 15, 3.5%, 77.6%;
  --light-yellow: 51 83.6% 88%;
  --pink: 0 63% 88%;
  --blue: 233 41.5% 45.3%;
  --red: 0 64% 65%;
  --green: 107 42% 57%;
  --text-header: var(--black);
  --bg-header: var(--white);
  --text-main: var(--black);
  --bg-main: var(--yellow);
  --text-box: var(--blue);
  --bg-box: var(--white);
  --border: 2px solid hsl(var(--black));
  --box-shadow: 4px 4px hsl(45 0% 0% / 0.60);
  --bg-code: var(--gray);
  --gap: calc(8px + 1.5625vw);
  --gap-l: calc(16px + 1.5625vw);
  --padding: 1rem;
  --padding-l: 1.5rem;
  --padding-xl: 2rem;
}

ul:has([class]) {
  padding-inline-start: 0;
}

h2 {
  font-family: var(--s-font);
  text-decoration: underline;
}

body {
  background: hsl(var(--bg-main));
  color: vhsl(var(--text-main));
  font-family: var(--ss-font);
  text-shadow: 1px 1px 2px white;
}

a:not([class]):not(:has(img)):not([data-unstyled]) {
  position: relative;
  white-space: nowrap;
}
a:not([class]):not(:has(img)):not([data-unstyled]) ::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0.4em;
  bottom: -0.06em;
  width: calc(100% - 0.3em);
  height: calc(100% - 0.6em);
  background: hsl(var(--text-box)/0.3);
  transition: 0.35s cubic-bezier(0.25, 0.1, 0, 2.05);
}
a:not([class]):not(:has(img)):not([data-unstyled]):hover::before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.burger-btn {
  --bar-height: 2px;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  aspect-ratio: 1;
  border: none;
  padding: 0;
  background: none;
}
@media (min-width: 576px) {
  .burger-btn {
    display: none;
  }
}

.burger {
  display: block;
  position: relative;
  transition: background 10ms 200ms ease;
}

.burger,
.burger::before,
.burger::after {
  height: var(--bar-height);
  width: calc(var(--bar-height) * 10);
  border-radius: calc(var(--bar-height) * 0.5);
  background: hsl(var(--black));
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  transition: top 200ms 250ms ease, transform 200ms 50ms ease, background 200ms 100ms ease;
}

.burger::before {
  top: calc(var(--bar-height) * -3);
}

.burger::after {
  top: calc(var(--bar-height) * 3);
}

.burger-btn[aria-expanded=true] .burger {
  background: transparent;
}
.burger-btn[aria-expanded=true] .burger::before, .burger-btn[aria-expanded=true] .burger::after {
  background: hsl(var(--white));
  top: 0;
  transition: top 200ms 50ms ease, transform 200ms 250ms ease, background 200ms 250ms ease;
}
.burger-btn[aria-expanded=true] .burger::before {
  transform: rotate(45deg);
}
.burger-btn[aria-expanded=true] .burger::after {
  transform: rotate(-45deg);
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
  }
}
@keyframes glow {
  0% {
    text-shadow: 0 0 1px #fff700;
  }
  100% {
    text-shadow: 0 0 5px #fff700;
  }
}
@keyframes glitch {
  0% {
    transform: none;
    opacity: 0.5;
  }
  7% {
    transform: translate(-2px, -3px);
    opacity: 0.75;
  }
  10% {
    transform: none;
    opacity: 0.5;
  }
  27% {
    transform: none;
    opacity: 0.5;
  }
  30% {
    transform: translate(-5px, -2px);
    opacity: 0.75;
  }
  35% {
    transform: none;
    opacity: 0.5;
  }
  52% {
    transform: none;
    opacity: 0.5;
  }
  55% {
    transform: translate(-5px, -1px);
    opacity: 0.75;
  }
  50% {
    transform: none;
    opacity: 0.5;
  }
  72% {
    transform: none;
    opacity: 0.5;
  }
  75% {
    transform: translate(-2px, -6px);
    opacity: 0.75;
  }
  80% {
    transform: none;
    opacity: 0.5;
  }
  100% {
    transform: none;
    opacity: 0.75;
  }
}
.tab-panel[hidden] {
  display: none;
}

.tabs-wrapper {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 4rem;
}
@media (width <= 576px) {
  .tabs-wrapper {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }
}

.tablist-wrapper {
  position: relative;
}

.tablist {
  border-inline-start: 2px solid;
  margin-block: 0;
  padding-block: 1rem;
}

.tablist-title {
  position: absolute;
  top: 0;
  bottom: 0;
  writing-mode: sideways-lr;
  padding: 0.6rem;
  left: -41px;
  font-size: 1.1rem;
  text-align: center;
  text-shadow: none;
}

.tab {
  padding: 0.6rem;
  font-size: 0.9rem;
  font-family: "Lunchtype", sans-serif;
  font-stretch: expanded;
  font-weight: bold;
  border-block-end: 2px solid transparent;
  text-shadow: none;
}
.tab:hover {
  border-block-end: 2px solid;
  cursor: pointer;
}
.tab[aria-selected=true] {
  border-block-end: 2px solid;
}

.tab-panel {
  animation: 2s fadein;
  display: flex;
  flex-flow: row wrap;
  gap: var(--gap);
  max-width: 55rem;
}

.review {
  flex: 1 1 14rem;
  max-width: 100vw;
}
.review > * {
  padding: var(--padding);
}

.review-header,
.review-description,
.review-content {
  border: var(--border);
  box-shadow: var(--box-shadow);
}

.review-header {
  background: hsl(var(--light-yellow));
}
.review-header .rating {
  text-align: right;
}
.review-header .rating::before {
  content: "Egg's rating: ";
  font-weight: bold;
}
.review-header .house {
  font-style: italic;
}
.review-header h1 {
  font-family: var(--s-font);
  font-size: 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
}
.review-header h1 a:hover {
  text-decoration: underline;
}

.review-description {
  background: hsl(var(--pink));
  margin: -10px 10px 0 -10px;
  font-style: italic;
}

.review-content {
  background: hsl(var(--bg-box));
  margin-block-start: -10px;
}

.layout-grid {
  min-height: 100vh;
  margin: 0 auto;
  padding: calc(18px + 1.5625vw) calc(18px + 1.5625vw) 0;
  gap: var(--gap-l);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media (width <= 576px) {
  .header-wrapper {
    flex-direction: column;
    gap: 5px;
  }
}

.site-header {
  max-width: 350px;
}

.menu {
  display: flex;
  flex-direction: row;
  gap: var(--gap);
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap);
}

.footer-wrapper {
  width: 100%;
  margin-block-start: auto;
}

.logo {
  width: 125px;
  height: auto;
  margin-inline: 2rem;
}
.logo:hover {
  animation: 400ms infinite glitch;
}

.site-header,
.status {
  color: hsl(var(--text-header));
  padding: var(--padding);
  border-radius: 8px;
  border: 2px solid;
  box-shadow: var(--box-shadow);
}

.site-header {
  position: relative;
  font-family: var(--mcr);
  font-size: 1.8rem;
  text-transform: uppercase;
  background: hsl(var(--bg-header));
}
.site-header::after, .site-header::before {
  content: "";
  position: absolute;
  border-style: solid;
  display: block;
  width: 0;
}
@media (width <= 576px) {
  .site-header::after, .site-header::before {
    display: none;
  }
}
.site-header::after {
  border-width: 10px 0 10px 15px;
  border-color: transparent hsl(var(--bg-header));
  right: -15px;
  bottom: 30px;
}
.site-header::before {
  border-width: 13px 0 13px 18px;
  border-color: transparent hsl(var(--text-header));
  right: -18px;
  bottom: 27px;
}

.tagline {
  margin: 0;
  font-size: 1.4rem;
  text-transform: lowercase;
}

.status {
  width: min(250px, 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: var(--padding);
  background: hsl(var(--light-yellow));
  font-family: var(--pixel-font);
  font-size: 16px;
}
.status::after, .status::before {
  content: "";
  position: absolute;
  border-style: solid;
  display: block;
  width: 0;
}
@media (width <= 576px) {
  .status::after, .status::before {
    display: none;
  }
}
.status::after {
  border-width: 10px 15px 10px 0;
  border-color: transparent hsl(var(--light-yellow));
  left: -15px;
  bottom: 25px;
}
.status::before {
  border-width: 13px 18px 13px 0;
  border-color: transparent hsl(var(--text-header));
  left: -18px;
  bottom: 22px;
}

.status-header {
  color: gray;
}

.status-title {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.status-time {
  text-transform: none;
}
.status-time:hover {
  text-decoration: underline;
}
.status-time::before {
  content: "[";
}
.status-time::after {
  content: "]";
}

.menu-item {
  display: block;
  line-height: 1;
  text-wrap: nowrap;
  text-align: center;
  font-family: var(--mcr);
  font-size: 1.4rem;
  text-transform: lowercase;
  background: hsl(var(--black));
  color: hsl(var(--white));
  padding: 0.3rem 0.8rem;
  box-shadow: 3px 3px hsla(45, 0%, 0%, 0.4);
  animation: 200ms glow infinite;
}
.menu-item:hover, .menu-item.active {
  transform: scale(1.4);
  box-shadow: 0 0;
}

@media (width <= 576px) {
  .logo {
    display: none;
  }
  .nav {
    position: absolute;
  }
  ul.menu {
    position: fixed;
    z-index: 1;
    visibility: hidden;
    flex-direction: column;
    width: min(100%, 320px);
    top: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 4rem 3rem;
    color: hsl(var(--white));
    background: transparent;
    transform: translateX(-100%);
  }
  .burger-btn[aria-expanded=true] ~ .menu {
    visibility: visible;
    background: hsl(var(--black));
    transform: translateX(0%);
    transition: all ease 400ms;
  }
  .menu-item {
    font-size: 2rem;
    background: unset;
    box-shadow: unset;
    animation: unset;
    text-shadow: none;
  }
  .menu-item:hover {
    transform: unset;
  }
  .menu-item.active {
    transform: unset;
  }
}
.page-header,
.page-title,
.page-desc {
  margin: 0;
}

.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-header > * {
  font-family: var(--mcr);
  line-height: 1;
  padding: 0.3rem;
  text-align: center;
}

.page-title {
  width: 100%;
  font-size: 2.4rem;
  text-transform: uppercase;
  border-bottom: 2px solid;
}

.page-desc {
  font-size: 1.6rem;
  text-decoration: none;
}

.footer-content {
  font-size: small;
  padding: 1.5rem;
  border-top: 1px solid;
  text-align: center;
}

.stack {
  width: min(100%, 40rem);
}

.stack:not(:last-child) {
  margin-block-end: 2rem;
}

.stack > section,
.stack > footer {
  padding: var(--padding-xl);
  border: var(--border);
  background: hsl(var(--bg-box));
  color: hsl(var(--text-box));
  box-shadow: var(--box-shadow);
}

.stack > section,
.stack > footer {
  rotate: 0.3deg;
}
.stack > section:not(:first-child),
.stack > footer:not(:first-child) {
  margin-block-start: -1rem;
}
.stack > section:nth-of-type(even),
.stack > footer:nth-of-type(even) {
  rotate: -0.3deg;
  translate: 1rem 0;
}
.stack > section:first-child,
.stack > footer:first-child {
  margin-block-start: 0;
}

.post-header {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: var(--padding);
  background: hsl(var(--text-box));
  color: hsl(var(--bg-box));
  border-radius: 8px 8px 0 0;
  border: var(--border);
  box-shadow: var(--box-shadow);
}
.post-header > * {
  text-shadow: none;
}
.post-header > h1 {
  margin-block-end: 4px;
  font-family: var(--s-font);
}
.post-header .post-meta {
  font-size: 0.8rem;
}
.post-header:hover {
  background: hsl(var(--bg-box));
  color: hsl(var(--text-box));
}

.fridge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--gap);
}
@media (width <= 576px) {
  .fridge {
    flex-direction: column;
  }
}

.notes-section {
  display: flex;
  flex-flow: row wrap;
  gap: var(--gap-l);
  align-items: start;
  justify-content: center;
  font-family: var(--hand-font);
}

.note-box {
  padding: var(--padding);
  border: var(--border);
  background: hsl(var(--bg-box));
  width: min(20rem, 100%);
}

.note {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  justify-content: center;
  background: hsl(var(--bg-box));
  border: var(--border);
  box-shadow: var(--box-shadow);
  padding: var(--padding-l);
  width: min(15rem, 100%);
  min-height: 10rem;
  flex: 0 1 auto;
}
.note:nth-child(even) {
  transform: rotate(2deg);
}
.note:nth-child(odd) {
  transform: rotate(-3deg);
}

.note-content {
  align-self: center;
}

.note-name {
  align-self: flex-end;
}
.note-name::before {
  content: "— ";
}

.tape::before {
  content: "";
  position: absolute;
  width: 35%;
  height: 2em;
  background-color: rgba(133, 132, 132, 0.25);
  border: 1px solid rgba(133, 132, 132, 0.28);
  top: -1rem;
  left: 30%;
}

.back-to-top {
  display: none;
  transition: 700ms ease;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.2rem;
  padding: 3px 6px;
  border: 1px solid;
  background: hsl(var(--bg-main));
}

.rounded-btn {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border: 1px solid;
  border-radius: 4px;
  box-shadow: 2px 2px;
  background: hsl(var(--pink));
  color: hsl(var(--text-main));
  font-size: small;
}

.rounded-btn:hover,
.rounded-btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
  transition: 100ms ease;
}

figure img {
  border: 1px solid;
}

.popup-target {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-target figure {
  transform: scale(0);
}

.popup-target:target {
  opacity: 1;
  pointer-events: all;
}
.popup-target:target figure {
  transform: scale(1);
  transition: transform 1s 500ms ease;
}

.overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.modal-caption {
  text-align: center;
  color: hsl(var(--white));
}

.bio-pic {
  width: min(100%, 9rem);
}

.svg-icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  position: relative;
  top: 2px;
}

.float-right {
  float: right;
  margin: 0 0 1rem 1rem;
}

.float-left {
  float: left;
  margin: 0 1rem 1rem 0;
}

@media (width <= 480px) {
  .float-right,
  .float-left {
    float: none;
    margin-inline: auto;
    margin-block-end: 1rem;
  }
}
.btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 6px;
}

hr {
  margin-block: 1.5rem;
  color: hsl(var(--text-box));
}

.notice {
  position: relative;
  max-width: 22rem;
  padding: var(--padding);
  background: hsl(var(--bg-main));
  border: 1px solid;
  font-size: small;
}
.notice::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "Note";
  margin-left: 10px;
  padding-inline: 4px;
  transform: translateY(-50%);
  background: hsl(var(--bg-main));
  font-family: var(--s-font);
  font-size: 1.2rem;
}

nav[aria-label=pagination] {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 6px;
}
nav[aria-label=pagination] .arrow {
  font-size: 1rem;
}

code {
  display: inline-block;
  padding: 6px;
  font-size: 0.8rem;
  background: hsl(var(--pink)/0.8);
}

article,
.footnotes-list {
  counter-reset: footnotes;
  --fn-size: 1.4em;
}

.footnotes-list {
  list-style: none;
  font-size: small;
  padding-inline-start: 0;
}
.footnotes-list li {
  position: relative;
}
.footnotes-list li:target::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  animation: fade-out 1s 5s ease-in-out;
  animation-fill-mode: forwards;
  background: rgba(151, 146, 146, 0.2);
}

.footnote-ref,
.footnote-backref {
  display: inline-block;
  font-size: 0.7rem;
  text-align: center;
  width: var(--fn-size);
  height: var(--fn-size);
  line-height: var(--fn-size);
  border-radius: 100%;
  background: hsl(var(--pink)/0.6);
}
.footnote-ref:hover,
.footnote-backref:hover {
  transform: scale(1.2);
  background: hsl(var(--pink));
}

.sr-only {
  display: none;
}

@media (min-width: 576px) {
  .mobile-only {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
