<!DOCTYPE html>

<html>

  <head>

    <title>Perspectivology – Coming Soon</title>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <style>

      body {

        font-family: Arial, sans-serif;

        background: #111;

        color: #fff;

        display: flex;

        justify-content: center;

        align-items: center;

        height: 100vh;

        margin: 0;

      }

      .box {

        text-align: center;

      }

      h1 {

        font-size: 2em;

        margin-bottom: 10px;

      }

      p {

        color: #aaa;

      }

    </style>

  </head>

  <body>

    <div class="box">

      <h1>Perspectivology</h1>

      <p>Our site is coming soon. Stay tuned!</p>

    </div>

  </body>

</html>