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: .5rem; 29 margin-bottom: .3em; 30} 31 32h2, .h2 { 33 font-size: 1.8rem; 34} 35 36h3, .h3 { 37 font-size: 1.3rem; 38 letter-spacing: -.08rem; 39} 40 41h4, .h4 { 42 font-size: 1.125rem; 43 letter-spacing: -.04rem; 44} 45 46h5, .h5 { 47 font-size: 1rem; 48 letter-spacing: -.05rem; 49} 50 51.courier-normal { 52 font-family: "Courier New", Helvetica, arial, sans-serif; 53} 54.courier-bold { 55 font-family: "Courier New", Helvetica, arial, sans-serif; 56 font-weight: 700; 57 margin-bottom: 0; 58} 59