-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
124 lines (114 loc) · 2.76 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3BQKCEJ06C"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3BQKCEJ06C');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error 404 - Page Not Found</title>
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(45deg, #d4145a, #fbb03b, #00a99d, #00d25b);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
color: #fff;
overflow: hidden;
}
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.error-container {
text-align: center;
animation: textAnimate 2s ease forwards;
opacity: 0;
}
@keyframes textAnimate {
0% {
opacity: 0;
transform: translateY(-50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
h1 {
font-size: 10em;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 10px;
background: -webkit-linear-gradient(#6dd5ed, #ff9a9e);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textGradient 15s ease infinite;
}
@keyframes textGradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
p {
font-size: 2em;
margin-bottom: 50px;
opacity: 0.8;
}
.button {
display: inline-block;
padding: 20px 40px;
background-color: #fff;
color: #000;
text-decoration: none;
font-weight: bold;
border-radius: 50px;
transition: all 0.4s ease-in-out;
outline: none;
border: 2px solid transparent;
cursor: pointer;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.button:hover {
background-color: transparent;
border-color: #fff;
color: #fff;
}
.button:active {
transform: translateY(2px);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
</style>
</head>
<body>
<div class="error-container">
<h1>404</h1>
<p>Oops! You got lost in catland!</p>
<p><a href="https://bit.ly/Notrickroll" class="button">Take Me Home</a></p>
</div>
</body>
</html>