<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

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

  <title>Under Construction</title>

  <style>

    * {

      margin: 0;

      padding: 0;

      box-sizing: border-box;

      font-family: Arial, Helvetica, sans-serif;

    }


    body {

      height: 100vh;

      display: flex;

      justify-content: center;

      align-items: center;

      background: linear-gradient(135deg, #1e3c72, #2a5298);

      color: white;

      text-align: center;

    }


    .container {

      max-width: 600px;

      padding: 40px;

    }


    .icon {

      font-size: 70px;

      margin-bottom: 20px;

    }


    h1 {

      font-size: 42px;

      margin-bottom: 20px;

    }


    p {

      font-size: 18px;

      line-height: 1.6;

      opacity: 0.9;

    }


    .footer {

      margin-top: 30px;

      font-size: 14px;

      opacity: 0.7;

    }

  </style>

</head>


<body>

  <div class="container">

    <div class="icon">🚧</div>

    <h1>Website Under Construction</h1>

    <p>

      We are working hard to bring you a new and improved experience.

      Please check back soon.

    </p>


    <div class="footer">

      © 2026 All rights reserved

    </div>

  </div>

</body>

</html>