<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Coming Soon</title>

    <style>

        body {

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            margin: 0;

            font-family: Arial, sans-serif;

            background-color: #f3f3f3;

            color: #333;

        }

        .coming-soon {

            text-align: center;

        }

        .coming-soon h1 {

            font-size: 3em;

            margin: 0;

        }

        .coming-soon p {

            font-size: 1.2em;

        }

    </style>

</head>

<body>

    <div class="coming-soon">

        <h1>Coming Soon</h1>

        <p>Our website is under construction. We'll be here soon with our new awesome site.</p>

    </div>

</body>

</html>