-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
88 lines (79 loc) · 2.29 KB
/
404.html
File metadata and controls
88 lines (79 loc) · 2.29 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
<!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>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #080707;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.container {
text-align: center;
max-width: 600px;
}
.skull-image {
max-width: 300px;
width: 100%;
height: auto;
margin-bottom: 2rem;
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
h1 {
font-size: 4rem;
color: #ffffff;
margin-bottom: 1rem;
}
h2 {
font-size: 1.5rem;
color: #ffffff;
margin-bottom: 1rem;
}
p {
font-size: 1.1rem;
color: #cccccc;
margin-bottom: 2rem;
line-height: 1.6;
}
.home-button {
display: inline-block;
padding: 15px 40px;
background: #a24b4b;
/* background: linear-gradient(135deg, #000000 0%, #a24b4b 100%); */
color: white;
text-decoration: none;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 600;
transition: transform 0.2s, box-shadow 0.2s;
}
.home-button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(162, 75, 75, 0.4);
}
.home-button:active {
transform: translateY(0);
}
</style>
</head>
<body>
<div class="container">
<img src="assets/images/skull-drawing-black2.png" alt="Skull Drawing" class="skull-image">
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Oops! The page you're looking for has vanished into the void. It might have been moved, deleted, or never existed in the first place.</p>
<a href="/" class="home-button">Go Home</a>
</div>
</body>
</html>