/* ==========================================================================
   The Diary of a Lucid Dame — Wimpy Kid diary theme
   Black ink on cream lined notebook paper.

   Everything vertical obeys a 33px baseline rhythm (--lh) so text sits ON
   the ruled lines like real handwriting. If you add spacing, use multiples
   of 33px; panel top/bottom = 2.5px border + 30.5px padding = one line.
   ========================================================================== */

:root {
  --paper: #f6f1e3;
  --ink: #111111;
  --rule-line: rgba(185, 174, 146, 0.42);
  --margin-line: rgba(201, 143, 134, 0.38);
  --lh: 33px; /* ruled-line gap AND global line-height */
  --font-hand: "Patrick Hand", "Comic Sans MS", cursive;
  --font-hand-sc: "Patrick Hand SC", "Patrick Hand", cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  font-family: var(--font-hand);
  color: var(--ink);
  font-size: 20px;
  line-height: var(--lh);
  background-color: var(--paper);
  /* pinkish margin line + ruled notebook lines; the -9px shift tucks each
     ruled line up against the text baseline */
  background-image:
    linear-gradient(
      90deg,
      transparent 96px,
      var(--margin-line) 96px,
      var(--margin-line) 97.6px,
      transparent 97.6px
    ),
    linear-gradient(
      to bottom,
      transparent calc(var(--lh) - 1.5px),
      var(--rule-line) calc(var(--lh) - 1.5px),
      var(--rule-line) var(--lh)
    );
  /* fixed 33px tile (not one long repeating-gradient) so subpixel rounding
     can't drift the rule spacing wider down the page */
  background-size: auto, 100% var(--lh);
  background-position: 0 0, 0 -9px;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  text-decoration: underline wavy 1.5px;
  text-underline-offset: 4px;
}

.page {
  max-width: 1016px;
  margin: 0 auto;
  padding: var(--lh) 28px calc(var(--lh) * 2);
}

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: var(--lh);
}

.diary-mark {
  font-size: 22px;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 19px;
}

.nav a.active {
  text-decoration: underline wavy 1.5px;
  text-underline-offset: 4px;
}

/* --------------------------------------------------------------------------
   Page title block (inner pages)
   -------------------------------------------------------------------------- */

.title-block {
  position: relative;
  margin-bottom: var(--lh);
}

.page-title {
  font-family: var(--font-hand-sc);
  font-weight: 400;
  font-size: 55px;
  line-height: calc(var(--lh) * 2);
}

.title-underline {
  display: block;
  height: 12px;
  max-width: 100%; /* wide underlines squish instead of forcing horizontal scroll */
  margin-top: -12px; /* net-zero: hugs the title's writing line */
}

.corner-doodle {
  position: absolute;
  right: 4px;
  top: -14px;
}

.corner-doodle svg {
  display: block;
}

/* greg at his desk, contributing — taped-in snapshot, tucked toward the
   right corner (publications page) */
.desk-doodle {
  width: fit-content;
  margin: var(--lh) 12px 0 auto;
  padding: 10px 12px 2px;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 2px;
  box-shadow: 5px 5px 0 0 var(--ink);
  transform: rotate(-2.5deg);
  text-align: center;
}

.desk-doodle svg {
  display: block;
  margin: 0 auto;
}

.desk-doodle figcaption {
  font-size: 16px;
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Comic panels
   -------------------------------------------------------------------------- */

.panel {
  position: relative;
  border: 2.5px solid var(--ink);
  border-radius: 2px;
  box-shadow: 6px 6px 0 0 var(--ink);
  padding: 30.5px 34px; /* 2.5px border + 30.5px = one ruled line */
  margin-bottom: var(--lh);
}

.panel-label {
  font-size: 18px;
  opacity: 0.6;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   Home
   -------------------------------------------------------------------------- */

.hero {
  box-shadow: 7px 7px 0 0 var(--ink);
  padding: 30.5px 44px;
  margin-bottom: var(--lh);
}

.hero .kicker {
  font-size: 17px;
  letter-spacing: 2px;
}

.hero .name {
  font-family: var(--font-hand-sc);
  font-weight: 400;
  font-size: 69px;
  line-height: calc(var(--lh) * 2);
}

.hero .hero-underline {
  display: block;
  height: 14px;
  width: min(470px, 100%);
  margin: -14px 0 0 2px; /* net-zero: sits on the name's writing line */
}

.hero .byline {
  font-size: 22px;
}

.hero .tagline {
  font-size: 19px;
}

.hero .status {
  font-size: 18px;
  opacity: 0.55;
}

/* corner scribble crediting the inspiration — above the nav (home only) */
.design-note {
  text-align: right;
  margin: -10px 4px 8px 0;
  transform: rotate(-2deg);
}

.design-note .note-line {
  font-family: "Caveat", var(--font-hand), cursive;
  font-size: 16px;
  opacity: 0.8;
}

.design-note .note-quote {
  font-size: 11px;
  opacity: 0.4;
}

.star-doodle {
  position: absolute;
  top: 22px;
  right: 244px;
  width: 46px;
  height: 46px;
  transform: rotate(-14deg);
}

/* the author, taped in like a diary photo */
.hero-photo {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 140px;
  padding: 8px 8px 0;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 2px;
  box-shadow: 5px 5px 0 0 var(--ink);
  transform: rotate(3deg);
}

.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.8; /* trimmed height so frame + caption ≈ square */
  object-fit: cover;
  object-position: 50% 20%;
}

.hero-photo figcaption {
  text-align: center;
  font-size: 16px;
  opacity: 0.6;
}

.explore {
  padding: 30.5px 40px;
  margin-bottom: var(--lh);
}

.explore-cols {
  display: flex;
  gap: 80px;
}

.explore-col {
  display: flex;
  flex-direction: column;
}

.explore-col a {
  font-size: 23px;
}

.dog-doodle {
  position: absolute;
  right: 46px;
  top: 50%;
  transform: translateY(-42%);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 20px;
  margin-bottom: var(--lh);
}

.contact-row .links {
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.bio p + p {
  margin-top: var(--lh); /* skip a line between entries, diary-style */
}

.spread {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.spread .panel {
  flex: 1 1 0;
  margin-bottom: 0;
}

.tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  height: var(--lh);
}

.chip {
  border: 2px solid var(--ink);
  border-radius: 2px;
  padding: 0 11px;
  font-size: 17px;
  line-height: 25px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Experience / Projects cards
   -------------------------------------------------------------------------- */

.card-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.card-logo {
  flex: 0 0 auto;
  width: 100px;
  height: 66px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-logo img {
  /* Fill the fixed box no matter the uploaded file's dimensions; multiply
     melts white JPEG backgrounds into the paper like the alpha PNGs. */
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1);
}

.card-head-main {
  flex: 1;
  min-width: 0;
}

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.card-title {
  font-weight: 400;
  font-size: 26px;
  line-height: var(--lh);
}

.card-meta {
  font-size: 16px;
  opacity: 0.5;
  white-space: nowrap;
}

.card-meta a {
  opacity: 1;
}

.card-sub {
  font-size: 18px;
  opacity: 0.6;
}

.card-desc {
  font-size: 18px;
}

.card-tech {
  font-size: 15px;
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Skills
   -------------------------------------------------------------------------- */

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lh) 22px;
}

.skills-grid .panel {
  padding: 30.5px 32px;
  margin-bottom: 0;
}

.skill-cat {
  font-weight: 400;
  font-size: 23px;
}

.skill-items {
  font-size: 18px;
}

/* --------------------------------------------------------------------------
   Journey
   -------------------------------------------------------------------------- */

.section-label {
  font-size: 19px;
  opacity: 0.6;
}

.awards {
  padding: 30.5px 32px;
  margin-bottom: var(--lh);
}

.award {
  display: flex;
  gap: 22px;
}

.award-name {
  flex: 0 0 250px;
  font-size: 20px;
}

.award-desc {
  flex: 1;
  font-size: 18px;
}

.timeline .panel {
  padding: 30.5px 32px;
  margin-bottom: var(--lh);
}

.event-date {
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.5;
}

.event-title {
  font-weight: 400;
  font-size: 22px;
}

.event-desc {
  font-size: 18px;
}

/* --------------------------------------------------------------------------
   Writings
   -------------------------------------------------------------------------- */

.article-panel {
  padding: 30.5px 36px;
}

.article-meta {
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.5;
}

.article-title {
  font-weight: 400;
  font-size: 29px;
}

.article-excerpt {
  font-size: 19px;
}

.article-tags {
  font-size: 16px;
  opacity: 0.6;
}

.article-link {
  display: inline-block;
  font-size: 20px;
}

.more-note {
  font-size: 18px;
  opacity: 0.5;
  margin-bottom: var(--lh);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  margin-top: var(--lh);
}

/* the hidden journey link — bottom corner of home, for observant peeps only */
.psst {
  text-align: right;
  margin-top: 40px;
  font-size: 15px;
  opacity: 0.3;
  transform: rotate(-2deg);
}

.psst:hover {
  opacity: 1;
}

/* sign-off on the patent law page */
.law-sign {
  text-align: right;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer .quote {
  font-size: 21px;
  max-width: 58%;
}

.footer .quote .by {
  font-size: 16px;
  opacity: 0.6;
  white-space: nowrap;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer .socials {
  font-size: 18px;
  opacity: 0.75;
}

.footer .copyright {
  font-size: 15px;
  opacity: 0.4;
  text-align: center;
}

/* always-on wavy underline for links that should pop (e.g. kiddo's blog) */
.wavy-link {
  text-decoration: underline wavy 1.5px;
  text-underline-offset: 4px;
}

/* --------------------------------------------------------------------------
   Homepage exemption — the home page keeps the original airy spacing and
   opts out of the 33px writing-on-the-lines rhythm (it felt jam-packed).
   -------------------------------------------------------------------------- */

body.home {
  line-height: 1.45;
  /* undo the rhythm build's -9px line shift so text lands on the rules
     exactly where it did in the original build */
  background-position: 0 0, 0 0;
}

body.home .page {
  padding: 46px 28px 56px;
}

body.home .topbar {
  margin-bottom: 34px;
}

body.home .hero {
  padding: 38px 44px 44px;
  margin-bottom: 40px;
}

body.home .hero .kicker {
  margin-bottom: 16px;
}

body.home .hero .name {
  line-height: 1;
}

body.home .hero .hero-underline {
  margin: 4px 0 14px 2px;
}

body.home .hero .byline {
  margin-bottom: 14px;
}

body.home .hero .tagline {
  line-height: 1.4;
  margin-bottom: 14px;
}

body.home .panel-label {
  margin-bottom: 11px;
}

body.home .explore {
  padding: 30px 40px 34px;
  margin-bottom: 40px;
}

body.home .explore-col {
  gap: 12px;
}

body.home .contact-row {
  margin-bottom: 40px;
}

body.home .footer {
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 860px) {
  body {
    background-image: linear-gradient(
      to bottom,
      transparent calc(var(--lh) - 1.5px),
      var(--rule-line) calc(var(--lh) - 1.5px),
      var(--rule-line) var(--lh)
    );
    background-size: 100% var(--lh);
    background-position: 0 -9px;
  }

  .page {
    padding: var(--lh) 18px var(--lh);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav {
    gap: 14px;
  }

  .hero {
    padding: 30.5px 24px;
  }

  .hero .name {
    font-size: 44px;
  }

  .star-doodle {
    display: none;
  }

  .hero-photo {
    position: static;
    width: 150px;
    margin-top: 8px;
    transform: rotate(2deg);
  }

  .hero .tagline {
    max-width: none;
  }

  .page-title {
    font-size: 42px;
  }

  .corner-doodle {
    top: -8px;
  }

  .corner-doodle svg {
    width: 64px;
    height: auto;
  }

  .panel {
    padding: 30.5px 20px;
  }

  .explore-cols {
    gap: 40px;
  }

  .explore-col a {
    font-size: 20px;
  }

  .dog-doodle {
    display: none;
  }

  .card-head {
    gap: 12px;
  }

  .card-logo {
    width: 66px;
    height: 44px;
  }

  .card-row {
    flex-wrap: wrap;
  }

  .spread {
    flex-direction: column;
    gap: var(--lh);
  }

  .spread .panel {
    width: 100%;
    flex: none;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .award {
    flex-direction: column;
    gap: 0;
  }

  /* stacked awards blur together — skip a ruled line between entries,
     star the names, and mute the descriptions so headers stand out */
  .award + .award {
    margin-top: var(--lh);
  }

  .award-name {
    flex: none;
  }

  .award-name::before {
    content: "★ ";
  }

  .award-desc {
    opacity: 0.7;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer .quote {
    max-width: none;
  }

  .desk-doodle {
    margin: var(--lh) auto 0;
  }

  .desk-doodle svg {
    max-width: 100%;
    height: auto;
  }

  /* home opts out of the rhythm, so it needs its own mobile spacing */
  body.home .page {
    padding: 32px 18px 44px;
  }

  body.home .hero {
    padding: 30px 24px 36px;
  }

  body.home .explore {
    padding: 26px 24px 32px;
  }
}

/* --------------------------------------------------------------------------
   Diary entry pages (musings/theories written on this site)
   -------------------------------------------------------------------------- */

.article-page {
  padding: 30.5px 36px;
}

.article-page .article-tags {
  margin-bottom: var(--lh);
}

.article-page .article-meta:last-of-type {
  margin-bottom: var(--lh);
}

.article-body > * + *,
.article-body article > * + * {
  margin-top: var(--lh);
}

.article-body h2,
.article-body h3 {
  font-family: var(--font-hand-sc);
  font-weight: 400;
}

.article-body h2 {
  font-size: 27px;
}

.article-body h3 {
  font-size: 22px;
}

.article-body ol {
  padding-left: 30px;
}

/* the diary's own bullet: an arrow, like everywhere else on the site */
.article-body ul {
  list-style: none;
  padding-left: 4px;
}

.article-body ul li {
  position: relative;
  padding-left: 30px;
}

.article-body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
}

/* links in entries always get the wavy underline so they read as links */
.article-body a {
  text-decoration: underline wavy 1.5px;
  text-underline-offset: 4px;
}

/* quotes are hand-scrawled pull-quotes between two squiggly rules,
   the same squiggle as the page-title underlines */
.article-body blockquote {
  margin: 0 auto;
  max-width: 620px;
  padding: 18px 22px;
  font-family: "Caveat", var(--font-hand);
  font-size: 28px;
  line-height: 33px;
  text-align: center;
  transform: rotate(-0.6deg);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='8' viewBox='0 0 48 8'%3E%3Cpath d='M0 4q12-6 24 0t24 0' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='8' viewBox='0 0 48 8'%3E%3Cpath d='M0 4q12-6 24 0t24 0' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x, repeat-x;
  background-position: center top, center bottom;
  background-size: 48px 8px, 48px 8px;
}

/* inline code: a little typed pill so it pops out of the handwriting */
.article-body code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, "Courier New", monospace;
  font-size: 15px;
  background: rgba(17, 17, 17, 0.07);
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 4px;
  padding: 1px 7px;
}

/* code blocks: a computer printout taped into the diary */
.article-body pre {
  position: relative;
  padding: 44px 18px 16px;
  border: 2.5px solid var(--ink);
  border-radius: 2px;
  background: #fff;
  box-shadow: 5px 5px 0 0 var(--ink);
  overflow-x: auto;
  font-size: 14px;
  line-height: 22px;
}

.article-body pre::before {
  content: "CODE —";
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: var(--font-hand-sc);
  font-size: 15px;
  letter-spacing: 2px;
  opacity: 0.45;
}

.article-body pre code {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: inherit;
}

.article-body img {
  max-width: 100%;
  border: 2.5px solid var(--ink);
}

.back-link {
  margin-bottom: var(--lh);
}

/* --------------------------------------------------------------------------
   Entry cards (musings/theories) — notes taped into the diary, 2-3 per row
   -------------------------------------------------------------------------- */

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px 24px;
  margin-bottom: var(--lh);
  padding-top: 10px; /* room for the tape to poke above the cards */
}

.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 2px;
  box-shadow: 5px 5px 0 0 var(--ink);
  padding: 24px 20px 18px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* scrapbook scatter: every note taped down at its own angle */
.article-grid .article-card:nth-child(3n + 1) { transform: rotate(-1.3deg); }
.article-grid .article-card:nth-child(3n + 2) { transform: rotate(1deg); }
.article-grid .article-card:nth-child(3n)     { transform: rotate(-0.4deg); }

.article-card:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 7px 7px 0 0 var(--ink);
}

/* the tape holding the note down */
.article-card::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 86px;
  height: 22px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(246, 241, 227, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.25);
}

.article-card .article-meta {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 18px;
  opacity: 0.5;
}

.article-card .article-title {
  font-family: var(--font-hand-sc);
  font-size: 23px;
  line-height: 26px;
  font-weight: 400;
}

.article-card .article-excerpt {
  font-size: 16px;
  line-height: 23px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .article-tags {
  font-size: 13px;
  line-height: 18px;
  opacity: 0.55;
}

.article-card .article-link {
  margin-top: auto;
  font-size: 17px;
  line-height: 22px;
}

@media (max-width: 860px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .article-grid .article-card:nth-child(n) { transform: rotate(-0.6deg); }
  .article-grid .article-card:nth-child(2n) { transform: rotate(0.7deg); }
}

/* links inside the editable patent-law body keep the wavy underline */
.law-body a {
  text-decoration: underline wavy 1.5px;
  text-underline-offset: 4px;
}

/* --------------------------------------------------------------------------
   Motion: the diary being handled, not a website performing.
   1. doodles + underlines draw themselves in like a pen (stroke-dashoffset,
      every stroke has pathLength="1" and a --i stagger index)
   2. taped-in things lift and straighten on hover
   3. sweetie's tail wags now and then
   All of it is off for people who asked for reduced motion.
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  :is(.corner-doodle, .desk-doodle, .dog-doodle, .title-underline, .hero-underline) [pathLength] {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: ink-draw 0.6s ease-out forwards;
    animation-delay: calc(0.15s + var(--i, 0) * 40ms);
  }
  :is(.corner-doodle, .desk-doodle, .dog-doodle, .star-doodle) .ink-fill {
    opacity: 0;
    animation: ink-fade 0.25s ease-out forwards;
    animation-delay: calc(0.45s + var(--i, 0) * 40ms);
  }
  :is(.corner-doodle, .desk-doodle, .dog-doodle, .star-doodle) .ink-both {
    fill-opacity: 0;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: ink-draw 0.6s ease-out forwards, ink-fill-in 0.3s ease-out forwards;
    animation-delay: calc(0.15s + var(--i, 0) * 40ms), calc(0.6s + var(--i, 0) * 40ms);
  }
  .dog-doodle text {
    opacity: 0;
    animation: ink-fade 0.4s ease-out forwards;
    animation-delay: 1.1s;
  }
  .tail {
    transform-box: fill-box;
    transform-origin: 0% 100%;
    animation: tail-wag 6s ease-in-out infinite;
    animation-delay: 2s;
  }
}

@keyframes ink-draw { to { stroke-dashoffset: 0; } }
@keyframes ink-fade { to { opacity: 1; } }
@keyframes ink-fill-in { to { fill-opacity: 1; } }
@keyframes tail-wag {
  0%, 84%, 100% { transform: rotate(0deg); }
  88% { transform: rotate(-16deg); }
  92% { transform: rotate(12deg); }
  96% { transform: rotate(-8deg); }
}

/* taped-in photo and snapshot: pick them up off the page */
.hero-photo,
.desk-doodle {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hero-photo:hover,
.desk-doodle:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 7px 7px 0 0 var(--ink);
}
.article-card:hover {
  transform: rotate(0deg) translateY(-5px);
}
