-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathni.css
More file actions
58 lines (52 loc) · 909 Bytes
/
Copy pathni.css
File metadata and controls
58 lines (52 loc) · 909 Bytes
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
.notfound-container {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: #0f172a; /* dark bg */
color: #fff;
text-align: center;
padding: 20px;
}
/* Image styling */
.notfound-img {
max-width: 350px;
width: 100%;
margin-bottom: 20px;
animation: float 1.5s ease-in-out infinite alternate;
}
/* Floating animation */
@keyframes float {
from {
transform: translateY(0px);
}
to {
transform: translateY(-20px);
}
}
/* Title */
.title {
font-size: 80px;
margin: 10px 0;
}
/* Subtitle */
.subtitle {
font-size: 18px;
margin-bottom: 20px;
opacity: 0.8;
}
/* Button */
.home-btn {
padding: 10px 20px;
background: #22c55e;
color: #000;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
transition: 0.3s;
}
.home-btn:hover {
background: #16a34a;
transform: scale(1.05);
}