forked from ChromeGaming/Squard-line
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
83 lines (74 loc) · 2.28 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
<!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>
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<style>
body {
background-color: #1e1e1e;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
perspective: 1000px;
overflow: hidden;
}
.background-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: radial-gradient(circle, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
animation: rotate 30s infinite linear;
transform: translateZ(-100px); /* Move background layer back */
z-index: 0;
}
.background-layer:nth-child(2) {
background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.2));
animation-duration: 60s;
transform: translateZ(-200px); /* Move second background layer further back */
z-index: 0;
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
img {
width: 500px;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
margin-top: 4%;
}
.btn {
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
margin-top: 4%;
z-index: 9999999;
position: relative;
text-decoration: none;
background-color: #1a6ad2;
padding: 10px 20px;
border-radius: 15px;
font-size: 20px;
transition: all 0.3s ease;
cursor: pointer;
}
</style>
</head>
<body>
<div class="background-layer"></div>
<div class="background-layer"></div>
<img src="./404.png" alt="404">
<a href="index.html" style="text-decoration: none; color: #fff;"><button class="btn">Go Back</button></a>
</body>
</html>