<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Zen Internet | Domain Holding Page</title>
  <link rel="icon" href="https://www.zen.co.uk/favicon-32x32.png" type="image/x-icon">
  <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
  <style>
    :root {
      --primary-color: #009390;
      --secondary-color: #fff;
      --background-color: #f7f7f7;
      --text-color: #333;
      --font-family: 'Roboto', sans-serif;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: var(--font-family);
      color: var(--text-color);
      background-color: var(--background-color);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    .container {
      background: var(--secondary-color);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      overflow: hidden;
      max-width: 800px;
      width: 90%;
      padding: 20px;
      text-align: center;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 20px;
      border-bottom: 2px solid var(--primary-color);
    }

    header img {
      height: 80px;
      margin-right: 15px;
    }

    header span {
      font-size: 1.5rem;
      color: var(--primary-color);
    }

    main {
      padding: 20px;
    }

    main h1 {
      font-size: 1.75rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    main p {
      line-height: 1.6;
      margin-bottom: 15px;
    }

    main ul {
      list-style: none;
      padding: 0;
    }

    main ul li {
      margin-bottom: 10px;
    }

    footer {
      text-align: center;
      margin-top: 20px;
      padding: 20px;
      background-color: var(--primary-color);
      color: #fff;
      font-size: 0.9rem;
    }

    footer p {
      font-size: 1.2rem;
      margin-bottom: 15px;
    }

    footer ul {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    footer ul li {
      margin: 0;
    }

    footer ul li a {
      text-decoration: none;
      font-size: 1rem;
      color: #fff;
      padding: 10px 20px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      transition: all 0.3s ease-in-out;
      margin: 5px 0; /* Added margin for spacing between buttons */
      display: inline-block; /* Ensures the buttons stay aligned properly */
    }

    footer ul li a:hover {
      background-color: rgba(255, 255, 255, 0.3);
      transform: scale(1.05); /* Slightly reduce scale to avoid overlap */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    a {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s;
    }

    a:hover {
      color: #005f5f;
    }
  </style>
</head>
<body>
  <div class="container">
    <header>
        <a href="https://www.zen.co.uk" target="_blank">
          <img src="//www.zen.co.uk/userfiles/images/zen-logo-holdingpage.gif" alt="Zen Internet Logo">
        </a>
        <span>This domain is hosted by <a href="https://www.zen.co.uk">Zen Internet</a></span>
      </header>
    <main>
      <h1>Domain Holding Page</h1>
      <p>This web space is active, but its owner is not currently using it to publish a website.</p>
      <p>If you own this domain, you can upload content via FTP or other hosting tools.</p>
      <p>If you need assistance check out our support guides:</p>
	<ul>
	  <li><a href="https://www.zen.co.uk/help-support/hosting">Knowledge Base</a></li>
	  <p> Or you can contact us:</p>
	  <li><a href="https://www.zen.co.uk/live-chat-hosting">Live Chat</a></li>
	  <li><a href="mailto:hosting@zen.co.uk">hosting@zen.co.uk</a></li>
	</ul>
    </main>
    <footer style="color: white;">
  <p>
    <a href="https://www.zen.co.uk" style="color: white; text-decoration: none;">
      Click here to explore more services Zen Internet can offer you
    </a>
  </p>
    </footer>
  </div>
</body>
</html>