<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>Cash Gothika</title>


  <style>

    body {

      margin: 0;

      height: 100vh;

      background: radial-gradient(circle at top, #1a1a1a, #000);

      color: #e6e6e6;

      font-family: Arial, Helvetica, sans-serif;

      display: flex;

      align-items: center;

      justify-content: center;

      text-align: center;

    }


    .container {

      max-width: 600px;

      padding: 20px;

    }


    h1 {

      font-size: 2.6em;

      letter-spacing: 3px;

      margin: 0 0 0.4em;

    }


    p {

      font-size: 1.1em;

      line-height: 1.6;

      opacity: 0.85;

      margin: 0 0 1.8em;

    }


    a.button {

      display: inline-block;

      padding: 15px 40px;

      font-size: 1.1em;

      letter-spacing: 1px;

      text-decoration: none;

      color: #fff;

      border: 1px solid #555;

      background: transparent;

      transition: all 0.3s ease;

    }


    a.button:hover {

      background: #fff;

      color: #000;

    }


    footer {

      margin-top: 2em;

      font-size: 0.8em;

      opacity: 0.4;

    }

  </style>

</head>


<body>

  <div class="container">

    <h1>CASH GOTHIKA</h1>


    <p>

      Curated finds. Obsessive sourcing.<br />

      Objects pulled from the margins and offered without explanation.

    </p>


    <a

      class="button"

      href="https://www.ebay.com/str/cashgothika"

      target="_blank"

      rel="noopener"

    >

      ENTER THE STORE

    </a>


    <footer>© Cash Gothika</footer>

  </div>

</body>

</html>