-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (58 loc) · 888 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.section-1 {
background-color: #1f2937;
padding: 0 12%;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 48px;
padding-top: 16px;
}
.header-text {
color: #f9faf8;
font-size: 24px;
}
ul {
display: flex;
list-style-type: none;
color: #e5e7eb;
gap: 16px;
}
.hero {
display: flex;
justify-content: space-between;
align-items: flex-end;
padding-bottom: 28px;
}
.left-items {
width: 400px;
}
.hero-image {
width: 100%;
height: auto;
object-fit: cover;
}
.hero-maintext {
font-size: 40px;
color: #f9faf8;
}
.hero-subtext {
font-size: 18px;
color: #e5e7eb;
}
.hero-button {
background-color: #3882f6;
color: white;
border-radius: 8px;
width: 110px;
padding: 8px;
border: none;
font-weight: bold;
margin-top: 8px;
}