<!DOCTYPE html>
<html lang="pl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Kot się śmieje</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #1a1a2e;
            color: #eee;
            font-family: system-ui, -apple-system, sans-serif;
            text-align: center;
            padding: 20px;
        }
        img {
            max-width: 320px;
            width: 90%;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.5);
            margin-bottom: 28px;
        }
        h1 {
            font-size: 2.2rem;
            margin-bottom: 12px;
            color: #ff6b6b;
        }
        p {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 420px;
            line-height: 1.5;
        }
        .small {
            margin-top: 24px;
            font-size: 0.9rem;
            opacity: 0.5;
        }
    </style>
</head>
<body>
    <img src="https://i.ibb.co/0j4yCZY2/1785773536247-2.jpg" alt="Wyśmiewający kot">
    <h1>Ha ha ha!</h1>
    <p>Serio wszedłeś na tę stronę?<br>Co za frajer 😹</p>
    <p class="small">Kot właśnie Cię ocenił… i nie wypadło dobrze.</p>
</body>
</html>