@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  [role="list"] {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  body {
    min-block-size: 100vh;
    line-height: 1.6;
  }

  h1,
  h2,
  h3,
  button,
  input,
  label {
    line-height: 1.1;
  }

  h1,
  h2,
  h3,
  h4 {
    text-wrap: balance;
  }

  p,
  li {
    text-wrap: pretty;
  }

  img,
  picture {
    max-inline-size: 100%;
    display: block;
  }

  input,
  button,
  textarea,
  select {
    font: inherit;
  }
}
@view-transition {
  navigation: auto;
}
@layer base {
  :root {
    /* Colors */
    --clr-white: hsl(0, 0%, 100%);
    --clr-gray-100: hsl(0, 2%, 79%);
    --clr-brand-400: hsl(6, 81%, 51%);
    --clr-brand-500: hsl(173, 21%, 15%);
    --clr-red-400: hsl(6, 77%, 41%);
    --clr-red-500: hsl(6, 70%, 20%);
    --clr-red-600: hsl(7, 38%, 14%);

    --clr-grey-100: hsl(0, 0%, 96%);
    --clr-grey-200: hsl(0, 0%, 83%);
    --clr-grey-300: hsl(0, 0%, 85%);
    --clr-grey-400: hsl(0, 0%, 76%);

    --clr-darkgreen-500: hsl(173, 21%, 15%);
    --clr-darkgreen-600: hsl(180, 13%, 8%);
    --clr-darkgreen-700: hsl(165, 12%, 7%);
    --clr-darkgreen-800: hsl(0, 4%, 5%);
    --clr-darkgreen-900: hsl(0, 4%, 5%);

    /* Scroll Bar */
    ::-webkit-scrollbar {
      -webkit-appearance: none;
    }
    ::-webkit-scrollbar {
      width: 3px;
      height: 3px;
    }
    ::-webkit-scrollbar-track {
      background: var(--clr-brand-500);
      border: 1px solid var(--clr-brand-500);
    }
    ::-webkit-scrollbar-thumb {
      background: var(--clr-brand-400);
      border: 0px solid var(--clr-brand-400);
      height: 300px;
      border-radius: 4px;
    }
    --ff-heading: "Signika", system-ui;
    --ff-body: "Signika", system-ui;

    --text-main: var(--clr-gray-100);
    --text-high-contrast: var(--clr-white);
    --text-brand: var(--clr-brand-500);
    --text-brand-light: var(--clr-brand-400);

    --background-accent-light: var(--clr-red-400);
    --background-accent-main: var(--clr-red-500);
    --background-accent-dark: var(--clr-red-600);
    --background-extra-light: var(--clr-darkgreen-500);
    --background-light: var(--clr-darkgreen-600);
    --background-main: var(--clr-darkgreen-700);
    --background-dark: var(--clr-darkgreen-800);
    --background-extra-dark: var(--clr-darkgreen-900);

    @media (prefers-color-scheme: light) {
      --text-main: var(--clr-darkgreen-800);
      --text-high-contrast: var(--clr-900);

      --background-accent-light: var(--clr-red-600);
      --background-accent-main: var(--clr-red-500);
      --background-accent-dark: var(--clr-red-400);
      --background-extra-light: var(--clr-white);
      --background-light: var(--clr-grey-100);
      --background-main: var(--clr-grey-200);
      --background-dark: var(--clr-grey-300);
      --background-extra-dark: var(--clr-grey-400);
    }

    --font-size-heading-sm: var(--fs-700);
    --font-size-heading-regular: var(--fs-800);
    --font-size-heading-large: var(--fs-900);
    --font-size-heading-xl: var(--fs-1000);

    --font-size-sm: var(--fs-300);
    --font-size-regular: var(--fs-400);
    --font-size-md: var(--fs-500);
    --font-size-lg: var(--fs-600);

    --border-radius-1: 4px;
    --border-radius-2: 8px;
    --border-radius-3: 12px;

    --fs-300: 0.875rem;
    --fs-400: 1rem;
    --fs-500: 1.125rem;
    --fs-600: 1.25rem;
    --fs-700: 1.5rem;
    --fs-800: 2rem;
    --fs-900: 3.75rem;
    --fs-1000: 3.75rem;

    @media (width > 760px) {
      --fs-300: 0.875rem;
      --fs-400: 1rem;
      --fs-500: 1.25rem;
      --fs-600: 1.5rem;
      --fs-700: 2rem;
      --fs-800: 3rem;
      --fs-900: 5rem;
      --fs-1000: 7.5rem;
    }
    interpolate-size: allow-keywords;
  }
  @media (prefers-reduced-motion: no-preference) {
    html {
      scroll-behavior: smooth;
    }
  }

  html {
    scroll-padding: 2rem;
    color-scheme: dark;
  }
  body {
    font-family: var(--ff-body);
    font-size: var(--font-size-regular);
    background: var(--background-main);
    color: var(--text-main);
    overflow-x: clip;
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: var(--ff-heading);
    color: var(--text-high-contrast);
  }

  a {
    color: var(--text-high-contrast);
  }

  a:hover,
  a:focus-visible {
    color: var(--text-brand-light);
  }

  img {
    border-radius: var(--border-radius-3);
  }
}

@layer layout {
  .flex-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--flex-group-gap, 0.5rem);
  }

  .flow > * + * {
    margin-top: var(--flow-spacing, 1em);
  }

  .grid-flow {
    display: grid;
    gap: var(--grid-flow-spacing, 1rem);
  }

  .grid-auto-fill {
    --min-column-size: 275px;

    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(
      auto-fill,
      minmax(min(var(--min-column-size), 100%), 1fr)
    );
  }

  h3 {
    font-size: 2rem;
  }

  .section {
    padding-block: 60px;

    @media (width > 760px) {
      padding-block: 128px;

      &[data-padding="compact"] {
        padding-block: 72px;
      }
    }
  }

  .equal-columns {
    display: grid;
    align-items: var(--equal-columns-alignment, stretch);
    gap: var(--equal-columns-gap, 1rem);

    @media (width > 760px) {
      grid-auto-flow: column;
      grid-auto-columns: 1fr;
    }

    &[data-gap="large"] {
      --equal-columns-gap: 2rem;
    }

    &[data-vertical-alignment="centered"] {
      --equal-columns-alignment: center;
    }
  }

  .wrapper {
    --wrapper-max-width: 1040px;
    --wrapper-padding: 1rem;

    width: min(var(--wrapper-max-width), 100% - var(--wrapper-padding) * 2);
    margin-inline: auto;

    &[data-width="narrow"] {
      --wrapper-max-width: 720px;
    }

    &[data-width="wide"] {
      --wrapper-max-width: 1040px;
    }
  }
  .hero {
    height: 100svh;
    display: grid;
    place-items: center;
    overflow-x: clip;
    padding-block: 7rem;
    margin-block-end: 3rem;
    width: 100%;
  }
  .hero img {
    grid-column: 1 / -1;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    object-fit: cover;
    z-index: -1;

    animation: header-image-animation linear forwards;
    animation-timeline: view();
    animation-range: exit;
  }
  article img {
    opacity: 0;
    scale: 0.8;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry 200px;
  }
}

@layer components {
  .skip-to-main {
    background: var(--clr-red-500);
    font-size: var(--fs-600);
    padding: 1rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-radius: var(--border-radius-3);
    color: var(--clr-white);
  }

  .skip-to-main:not(:focus) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .site-header__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    padding-block: 1rem;
    justify-content: space-between;
    align-items: center;

    a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }
    img.logo {
      width: 60px;
    }
    span {
      font-size: x-large;
    }
  }

  .primary-navigation {
    ul {
      list-style: none;
      margin: 0;
      padding: 0;

      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 2rem;
    }

    a {
      text-decoration: none;
    }
  }

  [aria-controls="primary-navigation"] {
    display: none;

    img {
      border-radius: 0;
    }
  }

  @media (width < 760px) {
    [aria-controls="primary-navigation"] {
      display: block;
      z-index: 100;
      background: transparent;
      border: 0;
    }

    .site-header {
      position: relative;
      overflow-x: clip;
    }

    .primary-navigation {
      display: none;
      opacity: 0;

      transition: display 1s, opacity 1s;
      transition-behavior: allow-discrete;

      position: absolute;
      z-index: 10;
      top: 0;
      right: 0;
      padding: 2rem;
      border-radius: 0 0 0 var(--border-radius-3);
      background: var(--background-accent-main);

      ul {
        flex-direction: column;
        gap: 0;
        font-size: var(--fs-700);
        font-family: var(--ff-heading);
        font-weight: 700;
      }

      li {
        translate: 0;
        opacity: 1;

        transition: opacity 300ms, translate 875ms;
        transition-delay: var(--delay, 125ms);

        &:nth-child(2) {
          --delay: 250ms;
        }

        &:nth-child(3) {
          --delay: 325ms;
        }
      }

      li + li {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px solid var(--background-accent-light);
      }
    }

    [aria-expanded="true"] ~ .primary-navigation {
      display: block;
      opacity: 1;

      @starting-style {
        display: block;
        opacity: 0;
      }

      li {
        translate: 0;
        opacity: 1;

        @starting-style {
          translate: 100%;
          opacity: 0;
        }
      }
    }
  }

  .site-footer {
    background-color: var(--background-dark);
    padding-block: 2rem;
    text-align: center;
    display: grid;
    gap: 2rem;

    a {
      text-decoration: none;
      color: var(--text-main);

      &:hover,
      &:focus-visible {
        color: var(--text-brand-light);
      }
    }
  }

  .site-footer__title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    font-family: var(--ff-heading);
  }

  .hero {
    text-align: center;
    color: var(--text-high-contrast);
    font-size: var(--font-size-md);

    .wrapper {
      animation: fade-out linear;
      animation-timeline: view();
      animation-range: exit -200px;
    }
  }

  .hero__title {
    font-size: var(--font-size-heading-large);

    span {
      color: var(--text-brand-light);
    }
  }
  .featured-image {
    width: 100%;
  }
  .faq {
    display: grid;
    gap: clamp(1rem, 10vw, 2.5rem);

    @container (width > 650px) {
      grid-template-columns: 250px 1fr;
    }
    .questions-and-answers {
      display: grid;
      gap: 1rem;
      width: 100%;
    }
    details {
      background: var(--clr-darkgreen-900);
      border: 1px solid var(var(--clr-primary-400));
      padding: 0.5rem 1rem;
      border-radius: 0.25rem;

      overflow: hidden;
    }
    details > p {
      padding-block: 1rem;
    }
    details::details-content {
      color: var(--clr-white);
      font-size: 0.875rem;

      block-size: 0;

      transition: block-size 1s, content-visibility 1s;
      transition-behavior: allow-discrete;
    }
    details[open]::details-content {
      block-size: auto;
    }
    summary {
      color: var(--clr-white);
      line-height: 1.3;
      margin-inline-start: 1rem;
      list-style-position: outside;
    }

    summary::marker {
      font-size: 0.75em;
      color: var(--clr-primary-400);
    }
  }
  .tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
  }

  .tag-list li {
    padding: 1rem;
    background: var(--clr-darkgreen-900);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-darkgreen-900);
  }
  .scroll-watcher {
    height: 3px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--clr-white);
    scale: 0 1;
    transform-origin: left;

    animation: scroll-watcher linear;
    animation-timeline: scroll();
  }
  .infinite-scroll {
    min-height: 400px;
    place-content: center;
    display: grid;
  }
  .scroller {
    max-width: 1100px;
  }

  .scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(
      90deg,
      transparent,
      white 20%,
      white 80%,
      transparent
    );
    mask: linear-gradient(
      90deg,
      transparent,
      white 20%,
      white 80%,
      transparent
    );
  }
  .scroller img {
    filter: grayscale(1);
    opacity: 0.9;
    object-fit: cover;
  }
  .scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll linear infinite;
    animation-timeline: auto-scroll();
  }
  .scroller[data-direction="right"] .scroller__inner {
    animation-direction: reverse;
  }

  .scroller[data-direction="left"] .scroller__inner {
    animation-direction: forwards;
  }

  .scroller[data-speed="fast"] .scroller__inner {
    animation-duration: 30s;
  }

  .scroller[data-speed="slow"] .scroller__inner {
    animation-duration: 60s;
  }

  .infinite-scroll {
    .tag-list {
      margin: 0;
      padding-inline: 0;
      list-style: none;
    }

    .tag-list li {
      padding: 1rem;
      background: var(--clr-brand-500);
      border-radius: 0.5rem;
      box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-darkgreen-900);
    }
  }
  #projetos {
    display: grid;
    justify-content: center;
  }
  .gallery {
    --img-size: calc(100px - 0.5rem / 2);
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(6, var(--img-size));
    grid-template-rows: repeat(3, var(--img-size));
    margin-block: 2rem;

    img {
      width: 100%;
      aspect-ratio: 1;
      /*     height: 100%; */
      object-fit: cover;
      grid-column: span 2;
      border-radius: 0.5rem;
      clip-path: path(
        "M 80 20 C 100 0 100 0 120 20 C 140 40 160 60 180 80 C 200 100 200 100 180 120 C 160 140 140 160 120 180 C 100 200 100 200 80 180 C 60 160 40 140 20 120 C 0 100 0 100 20 80 Z"
      );
      transition: filter 1000ms, scale 1000ms;
      animation: fade-in 0.4s liner;

      &:nth-of-type(4) {
        grid-column: 2 / span 2;
      }
    }
  }

  .gallery > img:hover {
    scale: 1.125;
    z-index: 100;
  }

  .gallery > img:not(:hover) {
    animation: zIndexHack 2000ms;
  }

  .gallery:hover > img {
    filter: brightness(0.5) saturate(0.5);
  }

  .gallery > img:hover {
    filter: brightness(1) saturate(1.5);
  }

  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;

    .basicInfo {
      background-color: var(--clr-white);
      border-radius: 25px;
      padding: 25px;
      position: relative;
    }
    .title .category,
    .title .info {
      font-weight: 600;
      font-size: x-small;
    }
    .title .name {
      font-weight: bold;
      font-size: large;
      padding-bottom: 3px;
      color: var(--clr-primary-400);
    }
    div[class*="new"] .img {
      background-size: 50px;
      background-repeat: no-repeat;
      background-position: top right;
    }

    div[class^="card"] {
      border-radius: 30px;
      width: 300px;
      background-color: var(--clr-gray-100);
    }
    div[class^="card"] .img {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    div[class^="card"] .img img {
      height: 200px;
      transform: scale(1) rotate(20deg);
      transition: 0.5s;
    }
    div[class^="card"] .img::before {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      content: "";
      transform: translate(-50%, -50%);
      background-color: var(--clr-white);
      z-index: -2;
      top: 50%;
      left: 50%;
    }
    div[class^="card"] .img::after {
      position: absolute;
      bottom: 0;
      width: 70%;
      height: 40px;
      background-color: #000;
      content: "";
      right: 30px;
      z-index: -1;
      border-radius: 50%;
      opacity: 0.2;
      filter: blur(10px);
      transition: 0.5s;
    }
    .colors {
      display: flex;
      font-size: xx-small;
      text-align: center;
      gap: 1em;
    }
    .colors .name {
      margin-bottom: 5px;
    }
    .colors .ellipse {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
    }
    .mores {
      padding: 25px;
    }
    .mores .stars,
    .mores .price {
      display: inline-block;
    }
    .mores .price {
      float: right;
      color: var(--clr-white);
      font-weight: 600;
      letter-spacing: 1px;
    }
    .mores .stars {
      color: var(--clr-white);
    }
    .checked {
      color: var(--clr-grey-200);
    }
    .addCard {
      position: absolute;
      width: 100%;
      bottom: 0;
    }
    .addCard i {
      position: absolute;
      width: 50px;
      height: 50px;
      background-color: var(--clr-gray-100);
      color: var(--clr-white);
      display: flex !important;
      justify-content: center;
      align-items: center;
      border-radius: 50% 50% 0 0;
      right: 94px;
      bottom: -5px;
      border: 5px solid var(--clr-gray-100);
      transition: 0.2s;
      opacity: 0;
      transform: translate(0, 10px);
      box-sizing: content-box;
      cursor: pointer;
    }
    .addCard::after,
    .addCard::before {
      position: absolute;
      bottom: 0;
      background-color: transparent;
      width: 50px;
      height: 45px;
      content: "";
      right: 45px;
      border-bottom-left-radius: 55%;
      opacity: 0;
      transform: translate(0, 20px);
      box-shadow: 0 20px 0 0 var(--clr-gray-100);
      transition: 0.2s;
    }
    .addCard::after {
      right: unset;
      left: 97px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 55%;
    }
    /* Animation Card - Hover */
    div[class^="card"]:hover .img img {
      transform: scale(1.2) rotate(30deg) translate(10px, -20px);
    }
    div[class^="card"]:hover .img::after {
      width: 90%;
    }
    div[class^="card"]:hover .addCard i,
    div[class^="card"]:hover .addCard::before,
    div[class^="card"]:hover .addCard::after {
      opacity: 1;
      transform: translate(0, 0);
    }
    div[class^="card"][class*="new"] .img {
      background-image: url(img/new.webp);
    }
    div[class^="card"][class*="seller"] {
      --clr-gray-100: var(--clr-darkgreen-900);
      .stars {
        color: var(--clr-gray-100);
      }
    }
    div[class^="card"][class*="out"] {
      filter: grayscale(1);
      opacity: 0.5;
    }
    div[class^="card"][class$="prioritize"]:not([class*="out"]) {
      order: -1;
    }
  }

  .no-js {
    #season,
    #edible {
      display: none;
    }
  }

  .faq-bento-grid {
    --card-title-color: var(--text-high-contrast);

    display: grid;
    gap: 1rem;
    grid-template-areas:
      "card-one"
      "card-two"
      "card-three"
      "card-four";

    .card:nth-child(1) {
      grid-area: card-one;
    }
    .card:nth-child(2) {
      grid-area: card-two;
    }
    .card:nth-child(3) {
      grid-area: card-three;
    }
    .card:nth-child(4) {
      grid-area: card-four;
    }

    .card > img {
      height: 100%;
      object-fit: cover;
    }

    @media (width > 600px) {
      grid-template-columns: 1fr 1fr;
      grid-template-areas:
        "card-one card-two"
        "card-three card-four";

      .card:nth-child(even) img {
        order: 3;
      }
    }

    @media (width > 900px) {
      grid-template-columns: 1fr 1fr 1fr;

      grid-template-areas:
        "card-one card-two card-four"
        "card-three card-three card-four";

      .card:nth-child(3) {
        display: grid;
        grid-template-columns: 300px 1fr;

        img {
          grid-column: 1;
          grid-row: 1 / 3;
        }
      }
    }
  }

  .card {
    display: flex;
    flex-direction: column;
    gap: var(--card-gap, 1rem);
    padding: 1rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-3);
  }

  .card__title {
    font-size: var(--card-title-font-size, var(--font-size-heading-sm));
    color: var(--card-title-color, var(--text-brand));
  }

  .card > img {
    border-radius: var(--border-radius-2);
  }

  .card__note {
    margin-top: auto;
    background-color: var(--background-extra-light);
    padding: 0.75rem;
    border-radius: var(--border-radius-2);
  }

  .tag-list {
    display: flex;
    gap: 12px;
  }

  .tag-list > li {
    padding: 0 0.5rem;
    color: var(--text-high-contrast);
    font-family: var(--ff-heading);
    font-size: var(--font-size-sm);
    background-color: var(--tag-background);
    border-radius: var(--border-radius-1);

    &[data-edible="edible"] {
      --tag-background: var(--background-accent-main);
    }
    &[data-edible="toxic"] {
      --tag-background: var(--clr-red-500);
    }

    &[data-season="summer"] {
      --tag-background: var(--background-accent-main);
    }
    &[data-season="fall"] {
      --tag-background: var(--clr-orange-500);
    }
    &[data-season="spring"] {
      --tag-background: var(--clr-teal-500);
    }
  }

  .button {
    display: inline flex;
    cursor: pointer;
    font-family: var(--ff-heading);
    font-weight: 700;
    text-decoration: none;
    background-color: var(--clr-red-500);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-1);
  }

  .button:hover,
  .button:focus-visible {
    background: var(--clr-red-400);
    color: var(--text-high-contrast);
  }

  select {
    font-family: var(--ff-heading);
    background-color: var(--background-accent-main);
    color: var(--text-high-contrast);
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    border: 0;
    border-radius: var(--border-radius-2);
  }
}

@layer utilities {
  [hidden] {
    display: none;
  }

  .visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .text-center {
    text-align: center;
  }

  .text-brand {
    color: var(--text-brand);
  }

  .text-high-contrast {
    color: var(--text-high-contrast);
  }

  .section-title {
    font-size: var(--font-size-heading-regular);
  }

  .background-main {
    background-color: var(--background-main);
  }
  .background-light {
    background-color: var(--background-light);
  }
  .background-extra-light {
    background-color: var(--background-extra-light);
  }
  .background-dark {
    background-color: var(--background-dark);
  }
  .background-extra-dark {
    background-color: var(--background-extra-dark);
  }
  .background-accent {
    background-color: var(--background-accent-dark);
  }

  .font-size-sm {
    font-size: var(--font-size-sm);
  }
  .font-size-regular {
    font-size: var(--font-size-regular);
  }
  .font-size-md {
    font-size: var(--font-size-md);
  }
  .font-size-lg {
    font-size: var(--font-size-lg);
  }

  .resizing * {
    transition: none !important;
    animation: none !important;
  }
}

@layer animations {
  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 0.5rem));
    }
  }

  @keyframes scroll-watcher {
    to {
      scale: 1 1;
    }
  }
  @keyframes fade-in {
    to {
      opacity: 1;
      scale: 1;
    }
  }
  @keyframes fade-out {
    to {
      opacity: 0;
      scale: 0.8;
    }
  }
  @keyframes bg-shift {
    from {
      background-color: var(--clr-gray-100);
    }
    to {
      background-color: var(--clr-primary-400);
    }
  }
  @keyframes header-image-animation {
    25% {
      opacity: 1;
    }
    85%,
    100% {
      opacity: 0;
      scale: 3;
    }
  }
  @keyframes zIndexHack {
    0%,
    100% {
      z-index: 100;
    }
  }
  @keyframes scaleUp {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.5);
    }
  }

  @keyframes sequence {
    0%,
    20% {
      transform: translateX(0);
    }
    40%,
    60% {
      transform: translateX(100px);
    }
    80% {
      transform: translateX(50px) translateY(50px);
    }
    100% {
      transform: translateX(0) translateY(0);
    }
  }

  @keyframes bounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
}

/* for testing purposed to ensure the animation lined up correctly */
.test {
  background: red !important;
}

.mushroom-guide .card {
  view-transition-class: mushroom-card;
}

::view-transition-group(.mushroom-card) {
  animation-duration: 350ms;
}
