<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8" />

  <title>Banned Books Project</title>

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


  <style>

    body {

      margin: 0;

      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

      color: #fff;

    }


    /* Background image + overlay */

    .background {

      min-height: 100vh;

      background-image:

        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),

        url("assets/background.jpg");

      background-size: cover;

      background-position: center;

      background-repeat: no-repeat;

    }


    /* Navigation bar */

    nav {

      display: flex;

      justify-content: center;

      gap: 24px;

      padding: 16px;

      background: rgba(0, 0, 0, 0.6);

      backdrop-filter: blur(4px);

    }


    nav a {

      text-decoration: none;

      color: #fff;

      font-weight: 500;

    }


    nav a:hover {

      text-decoration: underline;

    }


    /* Main content */

    main {

      max-width: 800px;

      margin: 120px auto;

      padding: 0 20px;

      text-align: center;

    }


    h1 {

      font-size: 2.6rem;

      margin-bottom: 16px;

    }


    p {

      font-size: 1.1rem;

      line-height: 1.6;

    }


    .button {

      display: inline-block;

      margin-top: 32px;

      padding: 14px 22px;

      background: #ffffff;

      color: #111;

      text-decoration: none;

      border-radius: 6px;

      font-weight: 600;

    }


    .button:hover {

      background: #e5e5e5;

    }


    footer {

      margin-top: 120px;

      padding: 24px;

      font-size: 0.9rem;

      text-align: center;

      background: rgba(0,0,0,0.6);

    }

  </style>

</head>


<body>

  <div class="background">


    <!-- Navigation -->

    <nav>

      <a href="index.html">Home</a>

      <a href="mission.html">The Mission</a>

      <a href="principles.html">Declaration of Principles</a>

      <a

        href="https://YOUR-BASE44-URL-HERE"

        target="_blank"

        rel="noopener noreferrer"

      >

        Interactive Reading List

      </a>

      <a href="about.html">About Us</a>

    </nav>


    <!-- Main content -->

    <main>

      <h1>Banned Books Project</h1>


      <p>

        A student-led educational initiative exploring challenged books,

        intellectual freedom, and the importance of access to information.

      </p>


      <p>

        This site provides context and guiding principles, while linking to an

        interactive reading list designed to help readers explore challenged

        titles thoughtfully.

      </p>


      <a

        class="button"

        href="https://YOUR-BASE44-URL-HERE"

        target="_blank"

        rel="noopener noreferrer"

      >

        Explore the Interactive Reading List →

      </a>

    </main>


    <!-- Footer -->

    <footer>

      <p>

        This is an educational, non-commercial student project.

        Inclusion of a book does not imply endorsement.

      </p>

    </footer>


  </div>

</body>

</html>