-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (45 loc) · 887 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (45 loc) · 887 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
48
49
50
51
52
53
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;700&display=swap");
:root {
--yellow: #ffbb30;
--black: #242424;
--grey: #818181;
--white: #ffffff;
}
* {
margin: 0;
padding: 0;
outline: 0;
}
body {
height: 100%;
background-color: var(--yellow);
font-family: "Oswald", sans-serif;
}
img {
display: block;
/* margin: 0 auto; */
height: 150px;
width: 150px;
margin: 30px auto;
}
.banner {
background-color: var(--white);
padding-bottom: 30px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}
.text-container {
width: 60%;
display: block;
margin: 0 auto;
}
h1 {
font-size: 80px;
text-align: center;
color: var(--black);
}
p {
color: var(--grey);
text-align: right;
font-size: 25px;
font-weight: 200;
}