1// Typography 2 3b, 4strong { 5 font-weight: bold; 6} 7 8p { 9 margin-top: 0; 10 line-height: 1.5rem; 11} 12 13// Headers 14h1, 15h2, 16h3, 17h4, 18h5 { 19 line-height: 1.25; 20 color: $text-01; 21} 22 23h1, 24.h1 { 25 font-size: 2.25rem; 26 font-weight: 500; 27 padding-top: 0.5rem; 28 margin-bottom: 3rem; 29} 30 31h2, 32.h2 { 33 font-size: 1.25rem; 34 font-weight: bold; 35} 36 37h3, 38.h3 { 39 font-size: 1rem; 40 font-weight: bold; 41} 42 43h4, 44.h4 { 45 font-size: 0.875rem; 46 font-weight: bold; 47} 48 49h5, 50.h5 { 51 font-size: 0.875rem; 52 font-weight: 500; 53 color: $text-02; 54} 55 56// Fonts 57.courier-normal { 58 font-family: "Courier New", Helvetica, arial, sans-serif; 59} 60.courier-bold { 61 font-family: "Courier New", Helvetica, arial, sans-serif; 62 font-weight: 700; 63 margin-bottom: 0; 64} 65 66.page-title { 67 margin-bottom: 50px; 68 font-size: 2rem; 69} 70