<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Crosscutting Concerns</title>
  <meta name="description" content="Cross Cutting Concerns" />
  <style>
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #0f172a;
      color: #e5e7eb;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      margin: 0;
    }
    .container {
      text-align: center;
    }
    h1 {
      margin-bottom: 0.5rem;
      font-size: 2rem;
    }
    p {
      margin-bottom: 1.25rem;
      color: #9ca3af;
    }
    a {
      color: #38bdf8;
      text-decoration: none;
      font-weight: 500;
    }
    a:hover {
      text-decoration: underline;
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>crosscuttingconcerns.com</h1>
    <p>Hello!</p>
    <a href="https://x.com/mgroves" target="_blank" rel="noopener noreferrer">
      Follow @mgroves on X
    </a>
  </div>
</body>
</html>
