File size: 698 Bytes
4535ed3
 
 
 
 
 
 
 
 
 
 
82d2063
4535ed3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82d2063
 
4535ed3
 
82d2063
 
4535ed3
 
82d2063
 
4535ed3
 
82d2063
 
4535ed3
 
82d2063
4535ed3
 
 
 
 
 
 
 
 
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
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --forest: #0B1A12;
  --forest-light: #0F2A1C;
  --cream: #F4F1E8;
  --lime: #B9FF3D;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--forest-light);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

.bg-forest {
  background-color: var(--forest);
}

.bg-forest-light {
  background-color: var(--forest-light);
}

.bg-cream {
  background-color: var(--cream);
}

.bg-lime {
  background-color: var(--lime);
}

.text-forest {
  color: var(--forest);
}

.text-lime {
  color: var(--lime);
}

.container {
  max-width: 1200px;
}

.feather {
  width: 1em;
  height: 1em;
}