Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
RishiRecon
GitHub Repository: RishiRecon/exploits
Path: blob/main/css/404.css
27877 views
1
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Fira+Mono:wght@500&display=swap');
2
3
body {
4
height: 95vh;
5
background: #000000;
6
text-align: center;
7
color: #E0E0E0;
8
font-family: 'Fira Mono', monospace;
9
}
10
11
h1 {
12
font-size: 2.5rem;
13
font-family: 'Permanent Marker', cursive;
14
}
15
16
div {
17
transform-style: preserve-3d;
18
}
19
20
svg {
21
width: clamp(300px, 70%, 600px);
22
height: 500px;
23
24
}
25
26
#rocket {
27
28
transform: translateY(750px);
29
30
animation: launch 2s ease-out forwards;
31
}
32
33
@keyframes launch {
34
from {
35
transform: translateY(750px);
36
}
37
38
to {
39
perspective: 500px;
40
transform: translateY(0px);
41
}
42
}
43
44
#stars {
45
animation: twinkling 2s linear;
46
}
47
48
@keyframes twinkling {
49
50
from {
51
transform: scale(0);
52
}
53
54
to {
55
transform: scale(1);
56
}
57
}
58
59
.text {
60
opacity: 0;
61
animation: appear 1s ease-in forwards;
62
animation-delay: 1.8s;
63
}
64
65
@keyframes appear {
66
from {
67
opacity: 0;
68
}
69
70
to {
71
opacity: 1;
72
}
73
}
74
75
a {
76
color: #F66947;
77
text-decoration: none;
78
}
79