-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (62 loc) · 1.02 KB
/
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
* {
padding: 0;
margin: 0;
}
body {
font-family: "Josefin Sans", sans-serif;
}
.header {
display: flex;
align-items: center;
justify-content: center;
padding: 2rem 0;
background-color: rgb(221, 221, 221);
}
.menu-item {
display: inline-block;
margin-right: 5rem;
font-weight: 600;
transition: all 1s;
cursor: pointer;
}
.menu-item:hover {
transform: translateY(-1.5rem);
}
.menu-logo {
width: 50px;
margin-right: 5rem;
}
.content {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.footer {
padding: 2rem 4rem;
background-color: rgb(221, 221, 221);
}
.footer-column-wrapper {
display: flex;
align-items: center;
justify-content: center;
}
.footer-column {
flex: 1;
padding: 2rem;
}
.footer-column h3 {
font-size: 26px;
font-weight: 700;
}
.footer-column li {
font-size: 20px;
margin: 0.5rem 0rem;
font-weight: 600;
transition: all 1s;
cursor: pointer;
}
.footer-column li:hover {
color: rgb(100, 100, 0);
}