
      <!DOCTYPE html>
      <html lang="de">
      <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>welcome.</title>
        <style>
          body {
            font-family: sans-serif;
            background: #ffffff;
            color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
          }
          .card {
            background: white;
            padding: 5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            text-align: center;
          }
          h1 { margin: 0 0 0.5rem; }
        </style>
      </head>
      <body>
        <div class="card">
          <h1>welcome.</h1>
          <p>default server page. nothing to see here.</p>
        </div>
      </body>
      </html>
    