<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Generic Landing Page</title>

    <style>

        body {

            font-family: sans-serif;

            margin: 0;

            padding: 0;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            background-color: #f4f4f4;

            color: #333;

            text-align: center;

        }

        .container {

            max-width: 600px;

            padding: 20px;

            background-color: #fff;

            box-shadow: 0 0 10px rgba(0,0,0,0.1);

            border-radius: 8px;

        }

        h1 {

            color: #007BFF;

        }

        p {

            margin-bottom: 20px;

        }

        .cta-button {

            display: inline-block;

            padding: 10px 20px;

            background-color: #007BFF;

            color: white;

            text-decoration: none;

            border-radius: 5px;

            transition: background-color 0.3s;

        }

        .cta-button:hover {

            background-color: #0056b3;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Welcome to Our Landing Page</h1>

        <p>This is a simple, generic landing page built with basic HTML and CSS. It's designed to be a starting point for your project or campaign.</p>

        <a href="#" class="cta-button">Get Started</a>

    </div>

</body>

</html>