22 lines
416 B
CSS
22 lines
416 B
CSS
:root {
|
|
background:
|
|
linear-gradient(rgba(8, 9, 12, 0.88), rgba(8, 9, 12, 0.88)),
|
|
repeating-linear-gradient(0deg, #171922 0 2px, #11131a 2px 4px);
|
|
color: #f4eed8;
|
|
font-family: 'VT323', Consolas, monospace;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#root {
|
|
height: 100dvh;
|
|
overflow: hidden;
|
|
}
|