File size: 1,036 Bytes
1f77aa7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
55
56
57
:root {
  --font-sans: 'Space Grotesk', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --ink-strong: #16262d;
  --ink-soft: #526771;
  --ink-muted: #7d8f98;
  --accent-cool: #117a70;
  --accent-warm: #d66225;
  --panel-stroke: rgba(24, 64, 86, 0.08);
  color: var(--ink-strong);
  font-family: var(--font-sans);
  font-synthesis: none;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(17, 122, 112, 0.08), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(214, 98, 37, 0.1), transparent 20%),
    linear-gradient(180deg, #f3f0e8 0%, #efebe0 48%, #ebe6d9 100%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

#root {
  min-height: 100vh;
}