-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.CSS
More file actions
65 lines (60 loc) · 1.06 KB
/
Copy path404.CSS
File metadata and controls
65 lines (60 loc) · 1.06 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
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Fira+Mono:wght@500&display=swap');
body{
height: 95vh;
background: #000000;
text-align: center;
color: #E0E0E0;
font-family: 'Fira Mono', monospace;
}
h1{
font-size: 2.5rem;
font-family: 'Permanent Marker', cursive;
}
div{
transform-style: preserve-3d;
}
svg{
width: clamp(300px , 70% , 600px);
height: 500px;
}
#rocket{
transform: translateY(750px);
animation: launch 2s ease-out forwards;
}
@keyframes launch {
from {
transform: translateY(750px);
}
to{
perspective: 500px;
transform: translateY(0px);
}
}
#stars {
animation: twinkling 2s linear ;
}
@keyframes twinkling {
from{
transform: scale(0);
}
to{
transform: scale(1);
}
}
.text{
opacity: 0;
animation:appear 1s ease-in forwards;
animation-delay: 1.8s;
}
@keyframes appear {
from{
opacity: 0;
}
to{
opacity: 1;
}
}
a{
color:#F66947;
text-decoration: none;
}