<!--
  The source of truth for this generic error page is https://github.com/Shopify/error-pages.
  Please do not edit this file directly.
-->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="referrer" content="never">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Something went wrong</title>
    <style>
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        background: #F1F1F1;
        font-size: 62.5%;
        color: #303030;
        min-height: 100%;
      }
      body {
        padding: 0;
        margin: 0;
        line-height: 2.7rem;
      }
      a {
        color: #303030;
        border-bottom: 1px solid #303030;
        text-decoration: none;
        padding-bottom: 1rem;
        transition: border-color 0.2s ease-in;
      }
      a:hover {
        border-bottom-color: #A9A9A9;
      }
      h1 {
        font-size: 1.8rem;
        font-weight: 400;
        margin: 0 0 1.4rem 0;
      }
      p {
        font-size: 1.5rem;
        margin: 0;
      }
      .page {
        padding: 4rem 3.5rem;
        margin: 0;
        display: flex;
        min-height: 100vh;
        flex-direction: column;
      }
      .text-container--main {
        