25 lines
239 B
CSS
25 lines
239 B
CSS
:root {
|
|
color-scheme: light dark;
|
|
}
|
|
|
|
* {
|
|
font-family: sans;
|
|
}
|
|
|
|
#root {
|
|
margin: 0 auto;
|
|
height: 100svh;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
}
|