13 lines
159 B
CSS
13 lines
159 B
CSS
|
html, body {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
display: grid;
|
||
|
height: 100%;
|
||
|
|
||
|
background: #1c1c1c;
|
||
|
color: white;
|
||
|
|
||
|
font-family: "Rubik", sans-serif;
|
||
|
}
|