1:root { 2 font-family: "Courier New", Courier, monospace; 3 --black: #000; 4 --grey: #4e505c; 5 --orange: #fc9156; 6 --yellow: #ffe75a; 7 --white: #eceee1; 8} 9 10body { 11 background-color: var(--black); 12} 13 14ul { 15 list-style: ":: "; 16 padding-left: 3ch; 17} 18 19h1 { 20 font-size: clamp(1.5rem, 1.8vw, 2rem); 21} 22 23h2, 24h3 { 25 margin-bottom: 13px; 26} 27 28h2 { 29 font-size: 1.5rem; 30} 31 32h3 { 33 font-size: 1.25rem; 34} 35 36p, 37li { 38 font-size: 1rem; 39 line-height: 1.5rem; 40} 41 42p { 43 margin: 13px 0; 44} 45 46a { 47 font-size: 1rem; 48 color: var(--yellow); 49 text-decoration: underline dashed; 50 text-underline-offset: 4px; 51} 52 53a:hover { 54 color: var(--orange); 55} 56 57.bwcontainer { 58 background-color: var(--black); 59 border: 10px double var(--white); 60} 61 62.bwbox { 63 color: var(--white); 64 background-color: var(--black); 65 border: 10px double var(--white); 66 padding: 13px 15px; 67} 68 69.center { 70 text-align: center; 71 vertical-align: middle; 72} 73 74.flex { 75 display: flex; 76 flex-wrap: wrap; 77} 78 79.barcodetext { 80 font-family: barcodetext; 81} 82 83@font-face { 84 font-family: barcodetext; 85 src: url("/fonts/LibreBarcode39ExtendedText-Regular.woff"); 86}