
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Under construction</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <style>
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
      background: #0f1115;
      color: #e6e6e6;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
    }
    .box {
      text-align: center;
      padding: 40px 48px;
      background: #161a22;
      border-radius: 12px;
      box-shadow: 0 20px 50px rgba(0,0,0,.4);
    }
    h1 {
      margin: 0 0 10px;
      font-size: 26px;
      font-weight: 600;
    }
    p {
      margin: 0;
      font-size: 15px;
      color: #b5b5b5;
    }
  </style>
</head>
<body>
  <div class="box">
    <h1>Under construction</h1>
    <p>We will be back soon.</p>
  </div>
</body>
</html>