Skip to content

Latest commit

 

History

History
124 lines (114 loc) · 3.37 KB

File metadata and controls

124 lines (114 loc) · 3.37 KB
<title>Page not found</title> <style> :root { --colorRgbFacetsTeal600: 2 128 125; --colorTealAction: var(--colorRgbFacetsTeal600); --colorRgbFacetsNeutralLight200: 233 235 237; --colorHr: var(--colorRgbFacetsNeutralLight200); --colorRgbFacetsNeutralLight700: 53 58 62; --colorGrayDarkest: var(--colorRgbFacetsNeutralLight700); --colorGrayLighter: var(--colorRgbFacetsNeutralLight200); --colorText: var(--colorGrayDarkest); --effectShadowLightShallow: 0 1px 10px 0 rgb(53 58 62 / 6%), 0 2px 4px 0 rgb(53 58 62 / 8%); --colorRgbFacetsNeutralDark900: 6 11 16; } body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; background: white; overflow: hidden; margin: 0; padding: 0; line-height: 1.5; color: rgb(var(--colorText)); }
  @media (prefers-color-scheme: dark) {
    body {
      background: rgb(var(--colorRgbFacetsNeutralDark900));
    }
  }

  h1 {
    margin: 0;
    font-size: 1.375rem;
    line-height: 1;
  }

  h1 + p {
    margin-top: 8px;
  }

  .main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
  }

  .card {
    position: relative;
    width: 75%;
    max-width: 364px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--effectShadowLightShallow);
    border: 1px solid rgb(var(--colorGrayLighter));
  }

  a {
    margin: 0;
    font-weight: 600;
    color: rgb(var(--colorTealAction));
    text-decoration-skip-ink: all;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-decoration-color: rgb(var(--colorTealAction) / 0.5);
    transition: text-decoration-color 0.15s ease-in-out;
  }

  a:hover,
  a:focus-visible {
    text-decoration-color: rgb(var(--colorTealAction));
  }

  p:last-of-type {
    margin-bottom: 0;
  }

  hr {
    border: 0;
    height: 1px;
    background: rgb(var(--colorHr));
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .your-site {
    font-size: 0.875rem;
  }
</style>

Page not found

Looks like you’ve followed a broken link or entered a URL that doesn’t exist on this site.


If this is your site, and you weren’t expecting a 404 for this path, please visit Netlify’s “page not found” support guide for troubleshooting tips.