<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

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

  <title>Site Coming Soon</title>

  <style>

    * {

      margin: 0;

      padding: 0;

      box-sizing: border-box;

    }


    html, body {

      height: 100%;

      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

      background: #f4f4f4;

      color: #333;

      display: flex;

      justify-content: center;

      align-items: center;

      text-align: center;

    }


    .container {

      max-width: 600px;

      padding: 20px;

    }


    h1 {

      font-size: 2.5rem;

      margin-bottom: 1rem;

    }


    p {

      font-size: 1.1rem;

      margin-bottom: 1rem;

    }


    .contact {

      font-size: 0.95rem;

      color: #666;

    }


    @media (max-width: 600px) {

      h1 {

        font-size: 2rem;

      }

    }

  </style>

</head>

<body>

  <div class="container">

    <h1>Coming Soon</h1>

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

    <p class="contact">Contact us at <a href="mailto:info@example.com">info@example.com</a></p>

  </div>

</body>

</html>