<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Unsealed Prophecy</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #111;
      color: #eee;
      text-align: center;
      padding: 3em;
    }
    h1 {
      font-size: 3em;
      margin-bottom: 0.2em;
    }
    p {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 2em;
    }
    a.button {
      display: inline-block;
      padding: 1em 2em;
      background: #e74c3c;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background 0.2s ease;
    }
    a.button:hover {
      background: #c0392b;
    }
    nav {
      margin-bottom: 3em;
    }
    nav a {
      color: #aaa;
      margin: 0 1em;
      text-decoration: none;
    }
    nav a:hover {
      color: white;
    }
  </style>
</head>
<body>
<nav style="background-color: #222; padding: 10px;">
  <a href="index.html" style="color: white; margin-right: 15px;">Home</a>
  <a href="vision.html" style="color: white; margin-right: 15px;">The Vision</a>
  <a href="viewer.html" style="color: white;">Timeline Viewer</a>
</nav>

  <h1>Unsealed Prophecy</h1>
  <p>
    Welcome to a new way of seeing scripture — not as fragments, but as a unified, living, breathing timeline.
    This site is the beginning of a massive vision to unveil the prophetic patterns woven throughout the Word —
    and to explore the divine architecture that undergirds reality itself.
  </p>
  <a class="button" href="viewer.html">Enter the Timeline</a>
</body>
</html>
