-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
74 lines (63 loc) · 926 Bytes
/
styles.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
body {
margin: 0;
font-family: "Inter", sans-serif;
display: flex;
flex-direction: column;
text-align: center;
}
h1,
h2,
h3,
p {
margin: 0;
}
.hero {
background-image: url(/images/hero.png);
background-size: cover;
height: 500px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-bottom: 80px;
}
h1 {
color: white;
font-size: 96px;
}
h2 {
font-size: 32px;
margin-bottom: 8px;
}
.hero h3 {
color: white;
font-size: 18px;
font-weight: 300;
}
.features {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
margin: 0 40px;
}
.features img {
height: 240px;
}
.things {
margin-bottom: 64px;
}
.things h3 {
font-size: 18px;
font-weight: 300;
color: #6e6e6e;
}
.featured {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 80px;
}
.featured p {
color: #6e6e6e;
}