-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
90 lines (76 loc) · 1.32 KB
/
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
body {
margin: 0;
padding: 0;
font-family: "Plus Jakarta Sans", sans-serif;
background-color: black;
color: white;
scroll-behavior: smooth;
}
body p {
padding: 2rem 10rem;
font-size: 1.2rem;
text-align: justify;
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
justify-content: center;
}
.hero h1 {
font-size: 3rem;
font-weight: 800;
}
.hero img {
width: 200px;
}
.buttons {
display: flex;
gap: 1rem;
}
.buttons a {
background-color: white;
color: black;
padding: 0.5rem 1rem;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
}
.buttons a:hover {
opacity: 0.8;
}
.buttons a:first-child {
background-color: rgb(224, 131, 0);
}
.roadmap {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
}
.roadmap h1 {
text-align: center;
font-size: 3rem;
font-weight: 700;
color: rgb(224, 131, 0);
}
.roadmap p {
display: flex;
flex-direction: column;
margin-top: -8rem;
gap: 1rem;
padding: 0 3rem;
}
.roadmap div {
display: flex;
flex-direction: row;
align-items: center;
gap: 1rem;
padding: 10rem;
}
.roadmap div img {
width: 300px;
}