<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>Coming Soon</title>

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

  <style>

    body {

      margin: 0;

      height: 100vh;

      display: flex;

      align-items: center;

      justify-content: center;

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

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

      color: #ffffff;

      text-align: center;

    }

    h1 {

      font-size: 3rem;

      margin-bottom: 0.5rem;

    }

    p {

      font-size: 1.2rem;

      opacity: 0.9;

    }

  </style>

</head>

<body>

  <div>

    <h1>Coming Soon</h1>

    <p>Our website is under construction. Stay tuned!</p>

  </div>

</body>

</html>