19 lines
156 B
CSS
19 lines
156 B
CSS
html, body {
|
|
margin: 0;
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
body {
|
|
font-size: 1rem;
|
|
background: #fff;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0 0 1rem 0;
|
|
}
|
|
|
|
p {
|
|
font-size: inherit;
|
|
}
|
|
|