-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
46 lines (46 loc) · 1.32 KB
/
404.html
File metadata and controls
46 lines (46 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 — Slavic Mythology API</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #0f0e17;
color: #fffffe;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
padding: 2rem;
}
.container { max-width: 500px; }
h1 { font-size: 6rem; color: #e8c547; font-weight: 900; line-height: 1; }
h2 { font-size: 1.5rem; margin: 1rem 0 0.5rem; }
p { color: #a7a9be; margin-bottom: 2rem; }
a {
display: inline-block;
background: #e8c547;
color: #0f0e17;
padding: 0.75rem 1.5rem;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
}
a:hover { background: #f5d76e; }
.symbol { font-size: 3rem; margin-bottom: 1rem; }
</style>
</head>
<body>
<div class="container">
<div class="symbol">⚡</div>
<h1>404</h1>
<h2>Lost in the Underworld</h2>
<p>Even Veles couldn't find what you're looking for. This endpoint doesn't exist.</p>
<a href="/API/">Back to API Docs</a>
</div>
</body>
</html>