-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
94 lines (83 loc) · 2.13 KB
/
404.html
File metadata and controls
94 lines (83 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 • Synthwave AI</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: radial-gradient(circle at top, #2a0b5a, #050014 60%, #000);
font-family: 'Orbitron', sans-serif;
color: #fff;
text-align: center;
}
.container {
max-width: 600px;
padding: 20px;
}
h1 {
font-size: 80px;
margin: 0;
background: linear-gradient(135deg, #ff2fd0, #00f6ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 0 20px rgba(255, 47, 208, 0.6),
0 0 30px rgba(0, 246, 255, 0.4);
}
p {
font-size: 18px;
color: #cfcdf5;
margin-top: 10px;
line-height: 1.6;
}
.neon-box {
margin-top: 30px;
padding: 20px;
border-radius: 12px;
border: 1px solid #00f6ff;
background: rgba(0,0,0,0.4);
box-shadow: 0 0 20px rgba(0, 246, 255, 0.3);
}
a {
display: inline-block;
margin-top: 20px;
padding: 12px 24px;
border-radius: 10px;
background: #ff2fd0;
color: #000;
font-weight: bold;
text-decoration: none;
box-shadow: 0 0 15px rgba(255, 47, 208, 0.6);
transition: 0.15s ease;
}
a:hover {
transform: translateY(-2px);
box-shadow: 0 0 25px rgba(255, 47, 208, 0.9);
}
.glow {
font-size: 14px;
margin-top: 10px;
color: #00f6ff;
text-shadow: 0 0 10px rgba(0, 246, 255, 0.8);
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>The neon path you’re following doesn’t exist.<br>
This page drifted off into the synthwave void.</p>
<div class="neon-box">
<p>Don’t worry — the grid is still stable.<br>
You can return to safety below.</p>
</div>
<a href="/">Return Home</a>
<div class="glow">Synthwave AI • HouseLearning</div>
</div>
</body>
</html>