<!DOCTYPE html>
<html lang="en">
<head>

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-N5W9WH05YV"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-N5W9WH05YV');
</script>


  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>David Burden</title>
  <link href="https://fonts.googleapis.com/css2?family=Karla:wght@400;600&display=swap" rel="stylesheet">
  <style>
    body {
      margin: 0;
      font-family: 'Karla', sans-serif;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #2c2c2c;
    }

    .business-card {
      background: #fff;
      max-width: 360px;
      width: 90%;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      padding: 25px 30px;
      color: #000;
      box-sizing: border-box;
    }

    .name {
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .info {
      font-size: 1rem;
      margin: 6px 0;
    }

    a {
      color: #000;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s ease;
      word-break: break-word;
    }

    a:hover {
      color: #0073b1;
      text-decoration: underline;
    }
  </style>
</head>
<body>
  <div class="business-card">
    <div class="name">David Burden</div>
    <div class="info">
      <a href="mailto:david@davidburden.com">david@davidburden.com</a>
    </div>
    <div class="info">
      <a href="https://www.linkedin.com/in/davidburden" target="_blank" rel="noopener noreferrer">
        linkedin.com/in/davidburden
      </a>
    </div>
  </div>
</body>
</html>