-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
54 lines (47 loc) · 819 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Poppins:wght@300;400;600;700&display=swap');
*,
*::after,
*::before {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--orange: hsl(47, 100%, 50%);
--green: hsl(74, 85%, 41%);
--black: hsl(0, 0%, 6%);
--light-gray: hsl(0, 0%, 87%);
--dark-gray: hsl(0, 0%, 46%);
--white: hsl(0, 0%, 100%);
--lime: hsl(178, 84%, 40%);
}
.button,
a {
background-color: var(--green);
color: var(--white);
border: none;
border-radius: 5em;
text-decoration: none;
padding: 0.5em 1em;
font-weight: 700;
}
body {
font-family: "Montserrat", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
font-family: 'Poppins', sans-serif;
}
h1,
h2 {
font-weight: 700;
}
p {
font-size: 1rem;
font-weight: 400;
}