-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (84 loc) · 1.68 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
.container {
max-width: 130rem;
margin: 0 auto;
padding: 0 119px;
}
.navbar-container {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 69px;
}
.grow-list {
flex-grow: 1;
padding-left: 62px;
}
.list {
display: flex;
align-items: center;
list-style: none;
gap: 36px;
font-family: "Poppins";
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
color: #000;
}
.list li {
cursor: pointer;
}
.list li:hover {
color: #5955b3;
}
.nav-button {
padding: 14px 28px;
background-color: #5955b3;
border: none;
border-radius: 12px;
font-family: "Poppins";
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
display: flex;
align-items: center;
text-align: center;
color: #ffffff;
}
.banner-container {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 55px;
}
.heading-text {
font-family: "Poppins";
font-style: normal;
font-weight: 600;
font-size: 64px;
line-height: 74px;
color: #3c2f60;
}
.heading-text span {
color: #5955b3;
}
.description {
font-family: "Poppins";
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 26px;
letter-spacing: 0.01em;
color: #828282;
margin-top: 28px;
}
.btn {
margin-top: 72px;
}