-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
60 lines (50 loc) · 914 Bytes
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Russo+One&family=Staatliches&display=swap');
* {
color: white;
background-color: black;
}
body {
display: flex;
flex-direction: column;
align-items: center;
}
header {
font-family: 'Russo One', sans-serif;
font-size: 1.5em;
display: flex;
flex-direction: column;
align-items: center;
}
#logo {
min-width: 150px;
width: 15%;
}
header h1 {
margin: 0;
}
main {
padding: 5px 10vw;
}
main p {
font-family: 'Roboto';
font-size: 1.2em;
}
footer {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 5px 10vw;
}
footer h2 {
font-family: 'Staatliches', cursive;
font-size: 2.5em;
margin: 10px 20px;
padding: 0;
text-align: center;
}
footer a img {
min-width: 50px;
width: 3.5vw;
margin: 10px;
}