-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
69 lines (69 loc) · 1.78 KB
/
404.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="public/favicon.ico">
<title>404 - Hack To The Future</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
body {
background-color: black;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
text-align: center;
}
.ascii-container {
display: flex;
justify-content: center;
}
.ascii-art {
font-family: monospace;
white-space: pre;
margin: 0;
font-size: 18px;
}
.description {
font-family: "JetBrains Mono", monospace;
color: #87ff5f;
padding-bottom: 30px;
}
.button {
background-color: white;
color: black;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 1em;
cursor: pointer;
margin-top: 50px;
text-decoration: none;
font-family: "JetBrains Mono", monospace;
font-weight: 600;
}
.button:hover {
background-color: #f0f0f0;
}
</style>
</head>
<body>
<div class="container">
<div class="ascii-container">
<pre class="ascii-art">
__ __ ____ __ __
/ // / / __ \/ // /
/ // /_/ / / / // /_
/__ __/ /_/ /__ __/
/_/ \____/ /_/
</pre>
</div>
<p class="description">This page has been erased from existence!</p>
<a href="/" class="button">Earth</a>
</div>
</body>
</html>