<html>
  <head>
    <title>...</title>
    <style>
      body {
        padding: 0;
        margin: 0;
        background-color: #000000f0;
      }
      .foo {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        font-size: 3em;
        color: white;
      }
    </style>
  </head>

  <body>
    <div class="foo">
      <div>Memento mori!</div>
    </div>
  </body>
</html>
