27 lines
485 B
CSS
27 lines
485 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Silkscreen', 'Courier New', monospace;
|
|
-webkit-font-smoothing: none;
|
|
-moz-osx-font-smoothing: unset;
|
|
image-rendering: pixelated;
|
|
background: #2c2c2c;
|
|
color: #d4d4d4;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#root {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
code {
|
|
font-family: 'Silkscreen', 'Courier New', monospace;
|
|
}
|