1// Typography
2
3b,
4strong {
5  font-weight: bold;
6}
7
8p {
9  margin-top: 0;
10  line-height: 1.5rem;
11}
12
13h1,
14h2,
15h3,
16h4,
17h5,
18h6 {
19  font-weight: 300;
20  margin: 0 0 .8rem;
21  line-height: 1;
22  color: #333;
23}
24
25h1, .h1 {
26  font-size: 3rem;
27  font-weight: 500;
28  padding-top: .5em;
29}
30
31h2, .h2 {
32  font-size: 1.8rem;
33}
34
35h3, .h3 {
36  font-size: 1.3rem;
37  letter-spacing: -.08rem;
38}
39
40h4, .h4 {
41  font-size: 1.125rem;
42  letter-spacing: -.04rem;
43}
44
45h5, .h5 {
46  font-size: 1rem;
47  letter-spacing: -.05rem;
48}
49
50.courier-normal {
51  font-family: "Courier New", Helvetica, arial, sans-serif;
52}
53.courier-bold {
54  font-family: "Courier New", Helvetica, arial, sans-serif;
55  font-weight: 700;
56  margin-bottom: 0;
57}
58