24 lines
431 B
CSS
24 lines
431 B
CSS
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');
|
|
|
|
:root {
|
|
font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
color: #1b1b1b;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
#root {
|
|
min-height: 100vh;
|
|
}
|