
        <html>
        <head>
            <meta charset="UTF-8">
            <style>
                body {
                    font-family: Arial, sans-serif;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 100vh;
                    margin: 0;
                    background-color: #f4f4f4;
                    text-align: center;
                }
                .message-box {
                    background-color: #fff;
                    padding: 30px;
                    border-radius: 10px;
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                    max-width: 600px;
                    width: 100%;
                }
                h1 {
                    color: #333;
                    font-size: 2.5em;
                    margin-bottom: 15px;
                }
                p {
                    color: #555;
                    font-size: 1.2em;
                    margin: 0;
                }
            </style>
        </head>
        <body>
            <div class="message-box">
                <h1>به سایت موزیک سنتی ایرانی مجاز خوش آمدید.</h1>
                <p>به زودی سایت در دسترس خواهد بود...</p>
            </div>
        </body>
        </html>