
    <!DOCTYPE html>
    <html>
    <head>
        <title>Service notice</title>
        <style>
            body {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100vh;
                font-family: sans-serif;
                line-height: 1.6;
                background-color: #f8f8f8;
                margin: 0;
            }
            h1 {
                text-align: center;
            }
            .message {
                margin: 20px;
                padding: 20px;
                background-color: #fff;
                box-shadow: 0 0 10px rgba(0,0,0,0.1);
                border-radius: 8px;
                max-width: 500px;
                min-width: 260px;
                text-align: center;
            }
            li {
                padding: 5px 0;
            }
        </style>
    </head>
    <body>
        <div class="message">
            <h1>Service notice</h1>
            <p>This link is no longer in service.</p>
        </div>
    </body>
    </html>