-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404error.css
51 lines (44 loc) · 867 Bytes
/
404error.css
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
font-family: Arial, sans-serif;
background: #f4f4f4;
color: #333;
}
.container {
text-align: center;
padding: 20px;
max-width: 400px;
background: #fff;
box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
border-radius: 10px;
}
h1 {
font-size: 6rem;
color: #e74c3c;
}
p {
font-size: 1.2rem;
margin-top: 20px;
}
.home-link {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
color: #fff;
background-color: #3498db;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.home-link:hover {
background-color: #2980b9;
}