Parent [>]
1@use "fonts";
2
3html {
4    background: var(--bg);
5}
6
7body {
8    max-width: calc(60ch + 4rem);
9    margin-inline: auto;
10    padding: 3rem 2rem;
11    color: var(--text);
12    font-family: fonts.$font-serif;
13    font-size: 17px;
14    line-height: 1.5;
15    text-rendering: optimizeLegibility;
16}
17
18@media (min-width: 40rem) {
19    body {
20        padding-top: 6rem;
21    }
22}
23
24body > :first-child {
25    margin-top: 0;
26}
27
28body > :last-child {
29    margin-bottom: 0;
30}
31
32.signature {
33    display: inline-block;
34    height: 0.667em;
35    width: auto;
36    transform: scale(3);
37    transform-origin: left bottom;
38}