<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Nothing Here</title>
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      background: #f5f5f5;
      font-family: sans-serif;
      color: #999;
    }
    p { font-size: 1.5rem; letter-spacing: 0.05em; }
  </style>
</head>
<body>
  <p>nothing here</p>
</body>
</html>

