<!DOCTYPE html>

<html lang="de">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>marxcamp.de</title>

  <!-- Geologica Font -->

  <style>
    @font-face {
      font-family: 'Geologica';
      font-style: normal;
      font-weight: 100 900;
      src: url('https://cdn.jsdelivr.net/fontsource/fonts/geologica:vf@latest/latin-wght-normal.woff2') format('woff2');
    }

    body {
      margin: 0;
      background: #0e0e0e;
      color: #eaeaea;
      font-family: 'Geologica', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
    }

    .card {
      text-align: center;
      padding: 50px 40px;
      max-width: 520px;
    }

    h1 {
      font-size: 32px;
      font-weight: 500;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }

    .subtitle {
      color: #888;
      margin-bottom: 40px;
      font-size: 15px;
    }

    .links a {
      display: block;
      margin: 12px 0;
      padding: 12px;
      border: 1px solid #333;
      border-radius: 6px;
      text-decoration: none;
      color: #eaeaea;
      transition: all 0.2s ease;
    }

    .links a:hover {
      border-color: #fff;
      background: #1a1a1a;
    }

    .footer {
      margin-top: 40px;
      font-size: 12px;
      color: #555;
    }
  </style>

</head>

<body>

  <div class="card">
    <h1>marxcamp</h1>
    <div class="subtitle">MarCom · Event · Strategie</div>

```
<div class="links">
  <a href="mailto:matthias@marxcamp.de">E-Mail</a>
  <a href="https://www.linkedin.com/in/matthias-marx-messeberlin/" target="_blank">LinkedIn</a>
</div>

<div class="footer">
  Berlin
</div>
```

  </div>

</body>
</html>
