<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>Welcome</title>
  <style>
    body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f4f6f8;
      color: #172033;
      font-family: Arial, sans-serif;
    }
    .box {
      text-align: center;
    }
    h1 {
      font-size: 42px;
      margin: 0 0 18px;
    }
    p {
      font-size: 18px;
      margin: 0;
      color: #4b5870;
    }
  </style>
</head>
<body>
  <div class="box">
    <h1>Welcome</h1>
    <p>This site is temporarily unavailable.</p>
  </div>
</body>
</html>