<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Lamka.NET</title>
    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #f4f5f7;
            color: #333333;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80vh;
            padding: 20px;
            text-align: center;
        }
        .container {
            max-width: 500px;
            background: #ffffff;
            padding: 20px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        .icon {
            font-size: 48px;
            margin-bottom: 10px;
            color: #4a5568;
        }
        h1 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a202c;
        }
        p {
            font-size: 16px;
            line-height: 1.6;
            color: #718096;
            margin-bottom: 24px;
        }
        .status-badge {
            display: inline-block;
            background-color: #edf2f7;
            color: #4a5568;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
    </style>
</head>
<body>

    <div class="container">
        <div class="icon">🛠️</div>
        <h1>This site is down for maintennace</h1>
        <p>We are migrating to a new datacenter so authorized users are advised to access the DR endpoint. If you do not know what that is, please refer to your registration confirmation email.<br />If you know, you know.</p>
        <div class="status-badge">Please don't spam me: lalpi at lamka dot net</div>
    </div>

</body>
</html>

