-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.css
70 lines (58 loc) · 997 Bytes
/
404.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
html,
body {
height: 100%;
}
a{
text-decoration: none;
color: inherit;
}
a:hover{
color: white;
text-decoration: none;
}
body {
background-color: #1F2029;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Montserrat', sans-serif;
font-weight: 500;
font-size: 15px;
line-height: 1.7;
color: black;
font-size: 1em;
}
button {
font-family: 'Montserrat', sans-serif;
}
ul {
list-style-type: none;
-webkit-padding-start: 35px;
padding-inline-start: 35px;
}
svg {
width: 100%;
visibility: hidden;
}
h1 {
font-size: 7.5em;
margin: 15px 0px;
font-weight: bold;
}
h2 {
font-weight: bold;
color: white;
}
p{
color: white;
}
@media screen and (max-width: 768px) {
body {
display: block;
}
.container {
margin-top: 70px;
margin-bottom: 70px;
}
}