27 lines
1.0 KiB
HTML
27 lines
1.0 KiB
HTML
<!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 - 4NK</title>
|
||
<link rel="stylesheet" href="styles.css">
|
||
<link rel="icon" type="image/png" href="favicon.png">
|
||
</head>
|
||
<body>
|
||
<div class="background-pattern"></div>
|
||
|
||
<div class="container" style="min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;">
|
||
<div>
|
||
<h1 style="font-size: 6rem; color: var(--primary-orange); margin-bottom: 1rem;">404</h1>
|
||
<h2 style="font-size: 2rem; color: var(--text-light); margin-bottom: 2rem;">Page not found</h2>
|
||
<p style="color: var(--text-gray); margin-bottom: 3rem; font-size: 1.2rem;">
|
||
The page you are looking for doesn’t exist or has been moved.
|
||
</p>
|
||
<a href="/" class="btn btn-primary" style="text-decoration: none;">
|
||
Back to home
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|