
            <!DOCTYPE html>
            <html lang="en">
            <head>
                <meta charset="UTF-8">
                <meta name="viewport" content="width=device-width, initial-scale=1.0">
                <title>Welcome to Lambdafilter.com</title>
                <style>
                    body {
                        font-family: Arial, sans-serif;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        min-height: 100vh;
                        margin: 0;
                        background-color: #f0f0f0;
                        text-align: center; /* Center the text within the div */
                    }
                    .message-container {
                        max-width: 80%;
                        padding: 30px;
                        background-color: #fff;
                        border-radius: 10px;
                        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                    }
                    h1 {
                        font-size: 2.5em; /* Bigger font for the main welcome */
                        color: #333;
                        margin-bottom: 20px;
                    }
                    p {
                        font-size: 1.5em; /* Bigger font for the paragraphs */
                        color: #555;
                        line-height: 1.6;
                        margin: 10px 0;
                    }
                    .highlight {
                        color: #ff6600; /* Optional: add a highlight color */
                        font-weight: bold;
                    }
                </style>
            </head>
            <body>
                <div class="message-container">
                    <h1>Welcome...</h1>
                    <p>You have landed at <span class="highlight">lambdafilter.com</span>.</p>
                    <p>We filter lambdas here.</p>
                    <p>We wear tin-foil hats.</p>
                    <p>Our work is dangerous.</p>
                </div>
            </body>
            </html>
        