22 lines
321 B
CSS
22 lines
321 B
CSS
:root {
|
|
color-scheme: light;
|
|
font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
|
|
background-color: #f9fafb;
|
|
color: #111827;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
background-color: #f9fafb;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
button {
|
|
font-family: inherit;
|
|
}
|