23 lines
367 B
CSS
23 lines
367 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #171a21;
|
|
color: white;
|
|
font-family: "Motiva Sans", "Roboto", sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#root {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* Remove default Vite styles that might interfere */
|
|
:root {
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
color-scheme: dark;
|
|
}
|