
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>sadtuna.org</title>
    <style>
        body {
            font-family: Futura, "Helvetica Neue", Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f0f0f0;
        }
        a {
          color: #333;
        }
        .container {
            text-align: center;
        }
        .circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
            font-size: 24px;
            font-weight: bold;
            color: white;
        }
        .message {
            margin-bottom: 20px;
        }
        .sidenote {
            font-size: 14px;
            color: #666;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="circle" id="colorCircle"></div>
        <div class="message">
          <h1>sadtuna.org</h1>
        </div>
        <div class="sidenote">
          <p style="margin-top: 3em;">
            <h3><a href="//artistpigments.org/">artistpigments.org</a></h3>
          </p>
          <p style="margin-top: 3em;">
            <a href="/impressum.html">Impressum</a> &bull;
            <a href="/privacy.html">Privacy policy</a>
          </p>
        </div>
    </div>

    <script>
        function getRandomLab() {
            const l = Math.floor(Math.random() * 100);
            const a = Math.floor(Math.random() * 256) - 128;
            const b = Math.floor(Math.random() * 256) - 128;
            return `lab(${l}% ${a} ${b})`;
        }

        document.getElementById('colorCircle').style.backgroundColor = getRandomLab();
    </script>
</body>
</html>