19 lines
411 B
CSS
19 lines
411 B
CSS
|
|
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=JetBrains+Mono:wght@400;500;600&display=swap');
|
||
|
|
|
||
|
|
:root {
|
||
|
|
font-family: 'DM Sans', system-ui, sans-serif;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
}
|
||
|
|
|
||
|
|
*,
|
||
|
|
*::before,
|
||
|
|
*::after {
|
||
|
|
box-sizing: border-box;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
html, body, #root {
|
||
|
|
height: 100%;
|
||
|
|
}
|