File size: 924 Bytes
acdc2aa
 
 
 
 
f63d934
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kameron:wght@400;700&display=swap');


:root {
	--lightest-grey: #dddddd;
	--lighter-grey: #909090;
	--light-grey: #505050;
	--medium-grey: #282828;
	--dark-grey: #101010;
	--blue: #0965bb;
	--yellow: #f4d03f;
	--bright-yellow: #f8fc22;
	--bright-green: #82fb18;
	--bright-blue: #22fcf4;

	--small: 0.2em;
	--medium: 0.5em;
	--large: 1em;
	--font-1: 'Poppins', sans-serif;
	--font-2: 'Staatliches', cursive;
	--font-3: 'Kameron', serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-1);
	font-size: 1rem;
	line-height: 1.2;
	background-color: var(--medium-grey);
	color: #fff;
}

img {
	max-width: 100%;
}

ul,
ol {
	list-style-type: none;
	padding-left: 0;
}