-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (47 loc) · 824 Bytes
/
style.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Quicksand:wght@400;600&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
border: none;
text-decoration: none;
}
html,
body {
background-color: #434242;
}
canvas {
display: block;
}
footer {
padding: 10px;
text-align: center;
display: flex;
flex-direction: column;
color: #ffffff;
font-family: "Poppins", sans-serif;
}
footer div {
margin-top: 5%;
margin-bottom: 5%;
}
footer h4 {
font-family: "Quicksand", sans-serif;
font-size: 30px;
margin-bottom: 5px;
}
footer h6 {
font-size: 15px;
margin-bottom: 5px;
margin-top: 5px;
font-weight: 600;
}
footer small {
margin-top: 5px;
font-size: 11px;
}
footer small a {
color: #87ceeb;
font-weight: 600;
}