<!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>~</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #ffffff;
            color: #000000;
            font-family: "Courier New", Courier, monospace;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            text-align: center;
        }
        
        .container {
            max-width: 600px;
            padding: 40px;
        }
        
        h1 {
            font-size: 2.5em;
            margin-bottom: 30px;
            letter-spacing: 3px;
            transform: rotate(-90deg);
            display: inline-block;
        }
        
        p {
            font-size: 1.2em;
            line-height: 1.8;
            letter-spacing: 1px;
        }
        
        .blink {
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>K</h1>
        <p>
            Im leeren Raum des Geistes tanzen Schatten längst vergessener Gedanken.
        </p>
        <p style="margin-top: 30px; font-size: 0.9em;">
            <span class="blink">_</span>
        </p>
    </div>
</body>
</html>