<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Page Not Found – Taha Hussain</title>
  <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Open+Sans&display=swap" rel="stylesheet">
  <style>
    :root {
      --bg-dark: #121212;
      --text-light: #e0e0e0;
      --accent: #00ced1;
    }

    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-light);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
      padding: 2rem;
    }

    h1 {
      font-size: 4rem;
      color: var(--accent);
      font-family: 'Montserrat', sans-serif;
    }

    p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: #cccccc;
    }

    a {
      text-decoration: none;
      color: var(--text-light);
      border: 1px solid var(--accent);
      padding: 0.6rem 1.2rem;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    a:hover {
      background-color: var(--accent);
      color: #000;
    }

    footer {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: #1a1a1a;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      color: #888;
    }
  </style>
</head>
<body>

  <h1>404</h1>
  <p>Oops! The page you're looking for doesn't exist.</p>
  <a href="index.html">Back to Home</a>

  <footer>
    &copy; 2025 Taha Hussain. All rights reserved.
  </footer>

</body>
</html>

