:root {
	--color-black: #181B22;
	--color-dark: #2F3540;
	--color-mid: #696F7E;
	--color-light: #A8A9B0;
	--color-vlight: #DDDDE0;
	--color-accent: #A56352;
	--font-sans: 'AmericaWeb', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	--font-serif: 'LyonTextWeb', Georgia, serif;
	--font-letterspacing: 0.02em;
	--font-size-small: 78%
}

@font-face {
	font-family: 'LyonTextWeb';
	src: url("LyonText-Regular-Web.woff") format("woff")
}

@font-face {
	font-family: 'LyonTextWeb';
	font-style: italic;
	src: url("LyonText-RegularItalic-Web.woff") format("woff")
}

@font-face {
	font-family: 'LyonTextWeb';
	font-weight: bold;
	src: url("LyonText-Semibold-Web.woff") format("woff")
}

@font-face {
	font-family: 'LyonTextWeb';
	font-weight: bold;
	font-style: italic;
	src: url("LyonText-SemiboldItalic-Web.woff") format("woff")
}

@font-face {
	font-family: 'AmericaWeb';
	src: url("GT-America-Standard-Regular.woff") format("woff"), url("GT-America-Standard-Regular.woff2") format("woff2")
}

@font-face {
	font-family: 'AmericaWeb';
	font-weight: bold;
	src: url("GT-America-Standard-Medium.woff") format("woff"), url("GT-America-Standard-Medium.woff2") format("woff2")
}

*,
*:before,
*:after {
	box-sizing: border-box;
	font-kerning: normal
}

html {
	scroll-behavior: smooth;
	background-color: #F4F2F0;
	font-size: 18px;
	font-family: var(--font-serif);
	line-height: 1.5;
	color: var(--color-dark);
	max-width: 68rem;
	margin: 0 auto;
	padding: 1rem;
	-webkit-font-smoothing: antialiased
}

@media (min-width: 600px) {
	html {
		padding: 2rem
	}
}

@media (min-width: 1000px) {
	html {
		font-size: 19px
	}
}

@media (min-width: 1200px) {
	html {
		font-size: 20px
	}
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto
	}
}

main {
	min-height: calc(100vh - 20.5rem)
}

.contain {
	margin: 5rem 0
}

.contain .contain {
	margin: 0
}

.contain.sticky>div:first-child,
.contain.sticky>header:first-child {
	height: 100%
}

.contain.sticky>div:first-child h1,
.contain.sticky>div:first-child h2,
.contain.sticky>div:first-child h3 {
	position: sticky;
	top: 0
}

.contain.sticky>header:first-child div {
	position: sticky;
	top: 1rem
}

@media (min-width: 45rem) {
	.contain {
		display: grid;
		grid-template-columns: 1fr 2fr;
		grid-gap: 2rem;
		align-items: flex-start
	}
	.contain h2 {
		margin-top: 0
	}
	.contain p:nth-child(1),
	.contain ul:nth-child(1),
	.contain ol:nth-child(1),
	.contain div figure:nth-child(1) {
		margin-top: 0
	}
	.contain.baseline {
		align-items: baseline
	}
}

h1,
h2,
h3 {
	font-size: 1rem;
	margin: 0;
	hyphens: none;
	font-family: var(--font-sans);
	font-size: 93%
}

h2 {
	margin-top: 2rem;
	margin-bottom: 0
}

h2+p {
	margin-top: 0.5rem
}

p.intro {
	margin-bottom: 3rem;
	max-width: 28rem
}

h1.display {
	margin-top: 6rem;
	font-family: var(--font-sans);
	font-size: 1.25rem;
	letter-spacing: -0.01em
}

h1+p.intro {
	margin-top: 0.25rem
}

small {
	font-family: var(--font-sans);
	color: var(--color-mid);
	font-size: var(--font-size-small);
	letter-spacing: var(--font-letterspacing)
}

time {
	color: var(--color-mid);
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	letter-spacing: var(--font-letterspacing);
	white-space: nowrap;
	display: block
}

figure {
	margin: 4rem 0
}

figure img {
	margin-left: auto;
	margin-right: auto;
	display: block
}

figcaption {
	font-size: var(--font-size-small);
	color: var(--color-mid);
	font-family: var(--font-sans);
	text-align: center;
	margin-top: 1rem;
	letter-spacing: var(--font-letterspacing)
}

a,
a:visited {
	color: var(--color-dark);
	text-decoration: none;
	background-image: linear-gradient(to bottom, var(--color-accent) 50%, var(--color-accent) 50%);
	background-repeat: repeat-x;
	background-size: 1px 1px;
	background-position: 0 100%;
	transition: color 0.2s ease
}

a:hover {
	color: var(--color-accent)
}

a:active {
	color: var(--color-dark)
}

cite {
	font-size: var(--font-size-small);
	font-style: normal;
	color: var(--color-mid);
	display: block;
	margin-top: calc(-2rem + 5px);
	letter-spacing: var(--font-letterspacing);
	font-family: var(--font-sans)
}

blockquote {
	border-left: 1px solid var(--color-light);
	margin-left: 2em;
	padding-left: 1em
}

hr {
	border: none;
	border-top: 1px solid var(--color-vlight);
	width: 60%;
	max-width: 15rem;
	margin: 4rem auto
}

hr.small {
	margin: 2rem 0;
	width: 5rem
}

img.fullimg,
.full {
	width: 100%;
	display: block
}

.multiply {
	mix-blend-mode: multiply !important
}

.star {
	font-size: var(--font-size-small);
	position: relative;
	top: -1px;
	left: 3px
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 2.25rem;
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 93%
}

nav ul li {
	display: inline-block;
	margin-right: 1rem
}

nav a {
	background: none
}

nav>a {
	display: block;
	float: left;
	margin-right: 2rem
}

footer {
	padding: 2rem 0 0;
	margin-top: 1rem;
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	letter-spacing: var(--font-letterspacing);
	color: var(--color-mid)
}

.horz-nav {
	border-top: 1px solid var(--color-vlight);
	border-bottom: 1px solid var(--color-vlight);
	padding: 0.75rem 0;
	font-family: var(--font-sans);
	font-size: var(--font-size-small)
}

.horz-nav strong {
	display: inline-block;
	margin-right: 1rem
}

.horz-nav ul {
	list-style: none;
	display: inline-block;
	margin: 0;
	padding: 0
}

.horz-nav ul li {
	display: inline-block;
	margin-right: 1rem
}

.bookwrap {
	display: block;
	background: var(--color-vlight);
	padding: 2rem;
	margin-bottom: 2rem;
	transition: background 0.2s ease
}

.bookwrap:hover {
	background: var(--color-light)
}

.bookwrap img {
	min-height: 300px;
	max-height: 50vh;
	margin: 0 auto;
	display: block;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1)
}

.fourup {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2rem;
	margin-bottom: 4rem
}

@media (min-width: 600px) {
	.fourup {
		grid-template-columns: 1fr 1fr 1fr 1fr
	}
}

.essay {
	max-width: 12rem;
	margin: 0 auto 1rem
}

.essays {
	margin-top: 4rem;
	text-align: center;
	line-height: 1.4
}

.essays a img {
	transition: opacity 0.2s ease
}

.essays a:hover img {
	opacity: 0.5
}

.round {
	border-radius: 100%
}

.postlink {
	display: block;
	background: none;
	border-top: 1px solid var(--color-vlight);
	padding: 1.5rem 0
}

.postlink h2 {
	margin: 0
}

.postlink:last-child {
	border-bottom: 1px solid var(--color-vlight)
}

@media (max-width: 750px) {
	.postlink {
		padding: 1rem 0;
		display: flex;
		flex-flow: column-reverse
	}
	.postlink p {
		display: none
	}
}

@media (min-width: 750px) {
	.postlink {
		display: grid;
		grid-template-columns: 1fr 2fr 3fr;
		align-items: baseline;
		grid-gap: 2rem
	}
	.postlink p {
		margin: 0
	}
}

ul.diary {
	columns: 3
}

@media (max-width: 32rem) {
	ul.diary {
		columns: 2
	}
}

@media (min-width: 45rem) and (max-width: 70rem) {
	ul.diary {
		columns: 2
	}
}

ul.tracklist {
	padding: 0;
	list-style: none;
	font-family: var(--font-sans);
	font-size: var(--font-size-small);
	letter-spacing: var(--font-letterspacing);
	margin-bottom: 2rem;
	border-top: 1px solid var(--color-vlight)
}

ul.tracklist li {
	border-bottom: 1px solid var(--color-vlight);
	padding: 0.25rem 0
}

html#Home {
	background-color: #797D84
}

html#Home * {
	color: #fff
}

html#Home main a,
html#Home main a:visited,
html#Home footer a,
html#Home footer a:visited {
	background-image: linear-gradient(to bottom, var(--color-light) 50%, var(--color-light) 50%)
}

.custom {
	background-color: #fff
}

.custom .multiply {
	mix-blend-mode: multiply
}

.custom hr {
	border-top: 1px solid rgba(0, 0, 0, 0.15)
}

.custom .video-wrapper {
	margin: 4rem auto;
	max-width: 32rem
}

.custom .video-responsive {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: block;
	height: 0;
	width: 100%;
	padding-bottom: 56.25%
}

.custom .video-responsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.custom p {
	margin-left: auto;
	margin-right: auto;
	max-width: 36rem
}

.custom p.centered {
	text-align: center
}

.custom h1 {
	font-weight: normal;
	line-height: 1.1;
	font-size: 2.5em;
	text-align: center;
	font-family: "AmericaWeb", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif
}

.custom h1.small {
	font-size: 1.75em
}

.custom h1.emph {
	max-width: 15em;
	margin: 3rem auto;
	color: #b99a54;
	line-height: 1.1
}

.custom h1.emph:before {
	content: '';
	display: block;
	margin: 0 auto 1em auto;
	width: 3em;
	border-top: 2px solid rgba(0, 0, 0, 0.1)
}

.custom h1.emph:after {
	content: '';
	display: block;
	margin: 1em auto 0 auto;
	width: 3em;
	border-top: 2px solid rgba(0, 0, 0, 0.1)
}

.custom h1.emph.black {
	color: #555
}

.custom h1.emph.black span {
	color: rgba(0, 0, 0, 0.2)
}

.custom h2 {
	font-family: "AmericaWeb", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: center;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	margin-bottom: 1.5rem
}

.custom blockquote {
	font-style: normal;
	margin: 2em auto;
	font-size: 1.2em;
	max-width: 28em;
	color: #b99a54;
	line-height: 1.5
}

.custom blockquote.centered {
	text-align: center
}

.custom pre.code,
.custom code {
	background-color: rgba(45, 55, 65, 0.04);
	color: rgba(45, 55, 65, 0.85);
	padding: 1rem 2rem;
	margin: 3rem auto;
	max-width: 30em;
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
	border-radius: 4px
}

.custom code {
	font-size: 14px;
	padding: 0.25rem 0.5rem;
	border: 1px solid rgba(45, 55, 65, 0.04)
}

.custom div.section {
	padding: 4rem 2rem
}

.custom div.section.title {
	background-color: #222;
	padding: 4rem 1rem
}

.custom div.section.title img {
	display: block;
	width: 100%;
	max-width: 40rem;
	margin: 0 auto
}

.custom div.section.title h1 {
	margin-left: -9999px;
	margin-top: -1em
}

.custom div.section.foreword {
	background-color: #333;
	padding: 1rem 2rem;
	margin-top: 0;
	text-align: center;
	font-family: "AmericaWeb", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif
}

.custom div.section.foreword p {
	font-size: 85%;
	color: #fff;
	font-family: "AmericaWeb", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif
}

.custom div.section.foreword a {
	color: #fff;
	background-image: linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.5) 50%)
}

.custom div.section.foreword a:hover {
	background-image: linear-gradient(to bottom, transparent 50%, #000 50%)
}

.custom div.section.foreword a:active {
	color: #000
}

.custom div.section.black {
	background-color: #222;
	color: #fff
}

.custom div.section.realblack {
	background-color: #000;
	color: #fff
}

.custom div.section.fade {
	background-color: #EBE8E3
}

.custom div.section.video {
	background-color: #000;
	color: #fff;
	text-align: center
}

.custom div.section.video iframe {
	display: block;
	margin: 0 auto
}

.custom div.section.rainbowbreak {
	background: url(/writing/what-screens-want/images/vertgrad.jpg)
}

.custom div.section.rainbowbreak h1 {
	color: #fff;
	font-size: 6em;
	line-height: 3;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 200;
	font-family: -apple-system, BlinkMacSystemFont, Söhne, 'Helvetica Neue', Helvetica, Arial, sans-serif
}

.custom div.footer {
	background-color: #333;
	padding: 2em;
	text-align: center
}

.custom div.footer p {
	color: #fff;
	font-family: "AmericaWeb", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 85%
}

.custom div.footer a {
	color: #fff;
	background-image: linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.5) 50%)
}

.custom div.section.black h1.emph:before,
.custom div.section.realblack h1.emph:before,
.custom div.section.video h1.emph:before {
	border-top: 2px solid rgba(255, 255, 255, 0.2)
}

.custom div.section.black h1.emph:after,
.custom div.section.realblack h1.emph:after,
.custom div.section.video h1.emph:after {
	border-top: 2px solid rgba(255, 255, 255, 0.2)
}

.custom div.section.black p a,
.custom div.section.realblack p a,
.custom div.section.video p a {
	color: #fff;
	background-image: linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.5) 50%)
}

.custom div.section.black figcaption,
.custom div.section.black cite,
.custom div.section.realblack figcaption,
.custom div.section.realblack cite,
.custom div.section.video figcaption,
.custom div.section.video cite {
	color: gray
}

.custom div.section.black figcaption a,
.custom div.section.black cite a,
.custom div.section.realblack figcaption a,
.custom div.section.realblack cite a,
.custom div.section.video figcaption a,
.custom div.section.video cite a {
	color: gray;
	background-image: linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.5) 50%)
}

.custom div.section.black hr,
.custom div.section.realblack hr,
.custom div.section.video hr {
	border-top-color: rgba(255, 255, 255, 0.25)
}

.custom div.section.black img.circleborder,
.custom div.section.realblack img.circleborder,
.custom div.section.video img.circleborder {
	border: 1em solid rgba(255, 255, 255, 0.05)
}

.custom div.section.black blockquote,
.custom div.section.realblack blockquote,
.custom div.section.video blockquote {
	border-color: rgba(255, 255, 255, 0.25)
}

.custom figure {
	margin: 4rem auto;
	max-width: 40rem
}

.custom figure figcaption {
	margin-top: 1rem
}

.custom figure img {
	display: block;
	width: 100%;
	margin: 0 auto
}

.custom div.video-wrapper~figcaption {
	margin-top: -3rem
}

.custom div.video-responsive+figcaption {
	margin-top: -2rem
}

.custom div.fluid-width-video-wrapper {
	margin: 0 auto
}

.custom img.full.real {
	max-width: none
}

.custom img.limit {
	max-width: 20rem
}

.custom img.limitsm {
	max-width: 12rem
}

.custom img.limitmed {
	max-width: 30rem
}

.custom div.clear {
	clear: both
}

.custom .vidframe {
	max-width: 50rem;
	margin: 3em auto
}

.custom .vidframe iframe {
	border: 1rem solid rgba(255, 255, 255, 0.1)
}

.custom a.noborder {
	border: none
}

.custom img.tinycentered {
	display: block;
	margin: 1em auto;
	width: 80%;
	max-width: 15em
}

.custom img.circleborder {
	border-radius: 70em;
	padding: 1em;
	border: 1em solid rgba(0, 0, 0, 0.05);
	margin-bottom: 3em
}

.custom div.step {
	max-width: 27em;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 4em
}

.custom div.step:after {
	content: '';
	display: block;
	width: 10em;
	margin: 4em auto;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1)
}

.custom div.section.white>div.step:first-child:before {
	content: '\201c';
	font-size: 7em;
	color: rgba(0, 0, 0, 0.1);
	display: block;
	line-height: 0.75;
	margin-bottom: 2rem;
	font-style: normal
}

.custom div.section.white>div.step:last-child:after {
	content: '\201d';
	font-size: 7em;
	width: auto;
	margin: 0;
	color: rgba(0, 0, 0, 0.1);
	display: block;
	line-height: 2;
	margin-bottom: -1em;
	font-style: normal;
	border: none
}

.custom div.section.strip {
	overflow-x: hidden
}

@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0deg)
	}
	to {
		-webkit-transform: rotate(360deg)
	}
}

.custom img.zoopraximg {
	-webkit-animation-name: rotate;
	-webkit-animation-duration: 2.5s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear
}

.custom div.rainbowbreak.somanyhorses {
	background: url("/writing/what-screens-want/images/horseani.gif") center center
}

.custom div.section.rainbowbreak.last {
	min-height: 100vh
}

.custom div.sm2-360ui {
	display: block;
	margin: 25vh auto 0;
	float: none
}

.custom img.speaker {
	display: block;
	margin: 1em auto 25vh;
	opacity: 0.2
}

.custom div.section.sea {
	padding: 0
}

.custom div.section.sea img {
	display: block;
	width: 100%
}

.custom div.section.parttitle {
	color: #fff;
	text-align: center;
	padding: 2em 0 3em;
	font-size: 2em;
	background-color: #ad9077
}

.custom div.section.parttitle span {
	color: rgba(0, 0, 0, 0.4);
	display: inline-block;
	padding: 0.25em 0.75em;
	margin-bottom: 1em;
	text-transform: uppercase;
	font-size: 66%
}

.custom ul.memos {
	list-style: none;
	margin: 3em auto;
	padding: 0;
	text-align: center
}

.custom ul.memos strike {
	color: #aaa
}

.custom ul.divlist {
	list-style: none;
	padding: 0;
	text-align: center;
	font-size: 1.75em !important;
	color: #777;
	line-height: 1.2
}

@media (max-width: 45em) {
	.custom div.section {
		padding-top: 2em;
		padding-bottom: 2em
	}
	.custom h1.emph {
		font-size: 1.8em
	}
	.custom div.section.title h1 {
		font-size: 3.5em
	}
	.custom div.section.rainbowbreak h1 {
		font-weight: 200;
		font-size: 2em
	}
}

@media (max-width: 600px) {
	.custom {
		margin-left: -1.5rem !important;
		margin-right: -1.5rem !important
	}
}

@media (min-width: 600px) and (max-width: 64rem) {
	.custom {
		margin-left: -2.35rem !important;
		margin-right: -2.35rem !important
	}
}

