18 lines
207 B
CSS
18 lines
207 B
CSS
|
html, body {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 1rem;
|
||
|
font: 16px/1.5 system-ui, sans-serif;
|
||
|
}
|
||
|
|
||
|
h1:first-child {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
*, *:before, *:after {
|
||
|
box-sizing: inherit;
|
||
|
}
|