10 lines
187 B
CSS
10 lines
187 B
CSS
|
:root {
|
||
|
--accent: #32a852;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
||
|
background: var(--accent);
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|