<!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>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      min-height: 100vh;
      font-family: Arial, Helvetica, sans-serif;
      background: linear-gradient(135deg, #f8f9fb, #e9edf3);
      color: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }

    .container {
      max-width: 700px;
      width: 100%;
    }

    .image-placeholder {
      width: 300px;
      height: 300px;
      margin: 0 auto 30px;
      border: 3px dashed #bbb;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      font-size: 18px;
      font-weight: bold;
      border-radius: 12px;
      overflow: hidden;
    }

    .image-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    h1 {
      font-size: 48px;
      margin-bottom: 15px;
      color: #222;
    }

    p {
      font-size: 20px;
      line-height: 1.6;
      color: #555;
    }

    .small-text {
      margin-top: 25px;
      font-size: 14px;
      color: #777;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 36px;
      }

      p {
        font-size: 18px;
      }

      .image-placeholder {
        width: 250px;
        height: 250px;
      }
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="image-placeholder">
      <!-- Replace this text with your image -->
      300 x 300 Image
      <!-- Example image:
      <img src="images/backsoon.png" alt="Coming Soon Image">
      -->
    </div>

    <h1>Coming Soon</h1>
    <p>We’re working on something exciting. Please check back soon for updates.</p>
    <div class="small-text">Website Launching Soon</div>
  </div>
</body>
</html>