-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathHeroSection.css
More file actions
65 lines (56 loc) · 1.03 KB
/
HeroSection.css
File metadata and controls
65 lines (56 loc) · 1.03 KB
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
.hero-section {
padding-top: 8rem;
z-index: -1;
background: #030414;
}
.hero-section .flex {
flex-direction: column;
gap: 30px;
}
.hero-section h1 {
color: var(--light-color);
font-size: 48px;
font-weight: 900;
}
.hero-section h4 {
color: var(--light-color);
font-size: 22px;
font-weight: 300;
text-align: center;
padding: 0px 14rem;
}
.hero-section button {
padding: 0.7rem 2rem;
border-radius: 25px;
background-color: var(--primary-color);
color: var(--light-color);
border: 1px solid transparent;
margin-bottom: 5rem;
}
.hero-section div:nth-child(2) {
margin-top: 4rem;
}
.hero-section .image {
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0px;
}
@media screen and (max-width: 980px) {
.hero-section h1 {
font-size: 24px;
}
.hero-section h4 {
font-size: 16px;
padding: 0px 4rem;
}
}
@media screen and (max-width: 400px) {
.hero-section h1 {
font-size: 20px;
}
.hero-section h4 {
font-size: 16px;
padding: 0px 2rem;
}
}