<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>kramdev.ru</title>
    <style>
       body {
                margin: 0;
                padding: 0;
                min-height: 100vh;
                display: flex;
                justify-content: center;
            }
            .container {
                text-align: center;
            }
            h1 {
                font-size: 48px;
                font-weight: 700;
            }
            .error-box {
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(10px);
                border-radius: 16px;
                padding: 30px;
                margin: 30px 0;
                border: 1px solid rgba(255,255,255,0.2);
            }
            .error-message {
                font-size: 18px;
                line-height: 1.6;
                margin: 0 0 20px 0;
            }
            .telegram-link {
                display: inline-block;
                background: #0088cc;
                color: #fff;
                padding: 12px 24px;
                border-radius: 8px;
                text-decoration: none;
                font-weight: 600;
                margin-top: 20px;
                transition: transform 0.2s;
            }
            .telegram-link:hover {
                transform: translateY(-2px);
            }
            .footer {
                margin-top: 30px;
                font-size: 14px;
                opacity: 0.8;
            }
            .icon {
                font-size: 72px;
                margin-bottom: 20px;
            }
    </style>
</head>
<body>
    <div class="container">
        <h1>kramdev.ru</h1>
        <div class="error-box">
            <p class="error-message">
                Домен успешно привязан к серверу. <br>
                Опубликуйте сайт на порт 34367 чтобы отобразить его на этой странице.
            </p>
        </div>
        <hr>
        <div class="footer">
            nginx/1.18.0 (Ubuntu)
        </div>
    </div>
</body>
</html>