21 lines
374 B
CSS
21 lines
374 B
CSS
html,
|
|
body {
|
|
padding: 0;
|
|
max-width: 900px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
|
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
|
color: white;
|
|
background-color: black;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
/* text-decoration: none; */
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|