@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
/* update me please */

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

:root {
        --black: #020817;
        --white: #ffffff;
        --red: #ef4444;
  --bg-color: #ffe770;
  --sal-pink: #ffcdff;
  --sal-pink-dark: #e25adb;
  --sal-pink-dark2: #8e2089;
}

 
      @font-face {
        font-family: "Tanker";
        src: url("/fonts/tanker/tanker-regular.ttf") format("truetype");
        font-weight: normal;
        font-style: normal;
      }
      @font-face {
        font-family: "Space Grotesk";
        src: url("/fonts/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf")
          format("truetype");
        font-weight: 100 900;
        font-style: normal;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

    

      html,
      body {
        display: flex;
        flex-direction: column;
        height: 100svh;
        background: var(--bg-color);
        color: var(--black);
        font-family: "Inter", sans-serif;
        -webkit-font-smoothing: antialiased;
      }

      /* NAV */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: var(--bg-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 2rem;
        z-index: 10;
        & a {
          text-decoration: none;
          display: flex;
          align-items: center;
          gap: 0.5rem;
        }
      }
      #vercel-id button {
        background: none;
        border: none;
        cursor: pointer;

        padding: 0;
        transition: scale 0.15s;
        &:hover {
          scale: 1.05;
        }
      }

      /* MAIN */
      main {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 7rem 2rem 4rem;
        text-align: center;
      }

      /* BIG NUMBER */
      .error-code {
        font-family: "Tanker", sans-serif;
        font-size: clamp(9rem, 28vw, 14rem);
        line-height: 0.9;
        letter-spacing: -0.02em;
        color: var(--black);
        -webkit-text-stroke: 2px var(--black);
        margin-bottom: 0.5rem;
      }

      /* SPEECH BUBBLE */
      .bubble-wrap {
        display: inline-block;
        margin-bottom: 2rem;
      }
      .bubble {
        background: var(--white);
        border: 2.5px solid var(--black);
        border-radius: 14px;
        padding: 0.55rem 1.2rem;
        font-family: "Tanker", sans-serif;
        font-size: 1.5rem;
        text-transform: lowercase;
        letter-spacing: 0.06em;
        display: inline-block;
        position: relative;
      }
      .bubble::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 28px;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 12px solid var(--black);
      }
      .bubble::after {
        content: "";
        position: absolute;
        top: -9px;
        left: 29px;
        width: 0;
        height: 0;
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-bottom: 11px solid var(--white);
      }

      /* BODY TEXT */
      p.desc {
        font-size: 1rem;
        line-height: 1.65;
        max-width: 38ch;
        margin-bottom: 2.5rem;
        opacity: 0.7;
      }

      /* BUTTONS */
      .actions {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
      }
      .btn {
        font-family: "Space Grotesk", sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        /* letter-spacing: 0.07em; */
        padding: 0.65rem 1.6rem;
        border-radius: 6px;
        text-decoration: none;
        border: 2.5px solid var(--black);
        background: var(--bg-color);
        color: var(--black);
        cursor: pointer;
        transition:
          transform 0.15s ease,
          box-shadow 0.15s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }
      .btn:hover {
        transform: translate(-2px, -2px);
        box-shadow: 4px 4px 0 var(--black);
      }

      /* STATUS DOT */
      .status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--black);
        flex-shrink: 0;
        transition: background 0.3s;
      }
      .status-dot.online {
        background: #22c55e;
        animation: pulse-dot 2s infinite;
      }
      .status-dot.issue {
        background: #f97316;
        animation: pulse-dot 2s infinite;
      }
      .status-dot.offline {
        background: var(--red);
        animation: pulse-dot 2s infinite;
      }
      @keyframes pulse-dot {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.4;
        }
      }

      /* FOOTER */
      footer {
        border-top: 1.5px solid var(--black);
        background: var(--bg-color);
        min-height: 60px;
        padding-inline: 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        flex-wrap: wrap;
        font-size: 0.8rem;
      }
      .footer-social {
        display: flex;
        align-items: center;
        gap: 1rem;
        & i {
          font-size: 1.2rem;
        }
        & a {
          color: var(--black);
          transition: opacity 0.15s;
          display: flex;
          align-items: center;
          text-decoration: none;
          &:hover {
            scale: 1.05;
          }
        }
      }

      .footer-credit {
        display: flex;
        align-items: center;
        gap: 0.3rem;
      }
      .footer-credit a {
        color: var(--black);
        font-weight: 500;
        text-decoration: none;
        &:hover {
          text-decoration: underline;
          text-underline-offset: 2px;
        }
      }
      .footer-copy {
        font-size: 0.8rem;

        letter-spacing: 0.02em;
      }
      @media (max-width: 640px) {
        footer {
          flex-direction: column;
          align-items: center;
          text-align: center;
          padding: 0.75rem 1.5rem;
          gap: 0.35rem;
        }
      }
   