// typst compile --format png --ppi 227 nyf.typ nyf.png
// then <https://guysie.github.io/opendithering/>
#let ppi = 227
#let px(n) = n / ppi * 1in
#let screen-width = 1872
#let screen-height = 1404
#let outer-x = px(144)
#let outer-y = px(112)
#let middle-gutter = px(112)
#let title-gap = px(54)
#let body-size = px(50)
#let title-size = px(60)
#let title-box-height = px(90)
#set page(
width: px(screen-width),
height: px(screen-height),
margin: (
left: outer-x,
right: outer-x,
top: outer-y,
bottom: outer-y,
),
fill: white,
)
#set text(
font: "Concourse OT 4",
size: body-size,
lang: "en",
hyphenate: auto,
fill: black,
)
#set par(
justify: true,
leading: 0.72em,
first-line-indent: 0em,
)
#let content-height = px(screen-height) - 2 * outer-y - title-box-height - title-gap
#block(height: title-box-height, below: title-gap)[
#align(center + horizon)[
#text(size: title-size)[
// …
]
]
]
#block(height: 1fr, breakable: false)[
#layout(size => [
#grid(
columns: (1fr, 1fr),
rows: (size.height,),
column-gutter: middle-gutter,
inset: 0pt,
align: bottom,
grid.cell(breakable: false)[
Are you winning at a biological level? Are you getting more territory at a more sovereign level of control? Are you living rigorously in contact with natural law? Are you working on something that will achieve eternal fame? Are your enemies being cursed and your friends blessed? Does your winning at these things serve any great and higher plan of blessing for all creation and all peoples?
],
grid.cell(breakable: false)[
These are not the root of all value. But absent some kind of reliable revelation as to the deeper wishes of the higher powers, as Abraham had when he almost sacrificed Isaac, anything that doesn’t credibly offer you help towards these values is not your friend.
],
)
])
]