<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>404 - Page Not Found</title>
  <!-- Bootstrap CSS -->
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
  <style>
    html, body {
      height: 100%;
    }
    body {
      display: flex;
      flex-direction: column;
    }
    .container {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    footer {
      text-align: center;
      padding: 1rem;
      background-color: #f8f9fa;
    }
    .error-message {
      font-size: 4rem;
      font-weight: bold;
      color: #dc3545;
    }
    .back-button {
      margin-top: 1rem;
    }
  </style>
</head>
<body>
<div class="container">
  <h1 class="display-4">Oops!</h1>
  <p class="error-message">404 - Page Not Found</p>
  <p class="lead">Sorry, the page you're looking for doesn't exist.</p>
  <a href="/" class="btn btn-primary back-button">Go Back Home</a>
</div>

<footer>
  <p>&copy; 2025 URLittle, by Kait0u. All rights reserved.</p>
</footer>

<!-- Bootstrap JS and dependencies -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"></script>
</body>
</html>
