-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
83 lines (71 loc) · 1.18 KB
/
index.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
@import "/minimal.css";
header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 3rem;
}
header h1 {
font-size: 3rem;
font-weight: 800;
}
header p {
font-size: 1.5rem;
font-weight: 600;
padding: 2.5rem;
}
.header-main {
display: inline-flex;
padding: 2rem;
gap: 1rem;
position: relative;
}
.flex-row-align-v {
display: flex;
align-items: center;
}
.overlap {
position: relative;
font-size: 3rem;
font-weight: 800;
color: var(--overlap-clr);
}
.under {
color: var(--under-clr);
right: -1.2rem;
font-size: 7rem;
font-weight: 900;
position: absolute;
z-index: -1;
}
.cta-homepage {
margin-top: 2rem;
display: flex;
justify-content: center;
align-items: center;
gap: 1rem;
}
.cta-homepage button {
cursor: pointer;
min-width: 9rem;
border: none;
padding: 1rem;
border-radius: 0.5rem;
font-weight: 600;
font-size: 1.1rem;
}
.get-started {
background-color: var(--black-clr);
color: var(--white-clr);
}
@media screen and (max-width: 620px) {
.header-main {
align-items: center;
flex-direction: column;
padding: 0;
}
.under {
right: -0.5rem;
}
}