-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (40 loc) · 764 Bytes
/
style.css
File metadata and controls
47 lines (40 loc) · 764 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
body {
background-color: #dde5b6;
margin-left:auto;
margin-right:auto;
font-family: 'Poppins', sans-serif;
font-size: 20px;
}
main {
background-color: #ffffff;
box-shadow: 3px 3px #adc178;
width:80vw;
margin-left:auto;
margin-right:auto;
margin-top:50px;
margin-bottom:100px;
padding: 50px 0 50px 0;
}
section {
padding: 0 100px 0 100px;
text-align: center;
}
h1 {
color: #adc178;
text-transform: uppercase;
font-weight: 700;
font-size: 42px;
text-shadow: 3px 3px #414833;
}
h2 {
color: #000000;
font-weight: 700;
}
a:link, a:visited {
color: #656d4a;
text-decoration: none;
}
a:hover, a:active {
color: #dde5b6;
}