html {
	--text-font-size: 18px;
	--code-font-size: 16px;
	--text-font-size-print: 11pt;
	--code-font-size-print: 10pt;

	--light-mode-color: #222;
	--light-mode-code-color: #222;
	--light-mode-page-background: #e5e3e1;
	--light-mode-overall-background: #e5e3e1;
	--light-mode-code-background: #e2e2e2;
	--light-mode-link-color: #225ea8;
	--light-mode-text-accents: #bd0026;
	--light-mode-meta-color: #5c6a72;

	--dark-mode-color: #d3c6aa;
	--dark-mode-code-color: #d3c6aa;
	--dark-mode-overall-background: #1e2326;
	--dark-mode-code-background: #2e383c;
	--dark-mode-page-background: #272E33;
	--dark-mode-link-color: #7fbbb3;
	--dark-mode-text-accents:#E67e80;
	--dark-mode-meta-color: #9da9a0;
}

@media screen {
	html {
		font-size: var(--text-font-size);
	}

	pre, code {
		font-size: var(--code-font-size);
	}

	body {
		-webkit-text-size-adjust: 100%;
		color: var(--light-mode-color);
		background-color: var(--light-mode-overall-background);
	}

	div.page-area {
		background-color: var(--light-mode-page-background);
	}

	a {
		color: var(--light-mode-link-color);
	}

	pre, code {
		background-color: var(--light-mode-code-background);
		color: var(--light-mode-code-color);
	}

	h2, h3, h4, h5, h6 {
		color: var(--light-mode-text-accents);
	}

	blockquote {
		border-color: var(--light-mode-text-accents);
	}

	.entry-meta {
		color: var(--light-mode-meta-color);
	}
}

@media print {
	html {
		font-size: var(--text-font-size-print);
	}

	pre, code {
		font-size: var(--code-font-size-print);
	}

	body {
		background-color: white;
		color: black;
	}

	a {
		color: #0A7CCF;
	}
}

@media screen and (prefers-color-scheme: dark) {
	body {
		background-color: var(--dark-mode-overall-background);
		color: var(--dark-mode-color);
	}

	div.page-area {
		background-color: var(--dark-mode-page-background);
	}

	a {
		color: var(--dark-mode-link-color);
	}

	pre, code {
		background-color: var(--dark-mode-code-background);
		color: var(--dark-mode-code-color);
	}

	h2, h3, h4, h5, h6 {
		color: var(--dark-mode-text-accents);
	}

	blockquote {
		border-color: var(--dark-mode-text-accents);
	}

	.entry-meta {
		color: var(--dark-mode-meta-color);
	}
}

@page {
	margin: 1cm;
}

body {
	font-family: charter, bitstream charter, sitka, Georgia, serif;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
}

strong, b {
	font-weight: 700;
}

h1 {
	font-size: 2em;
	font-weight: 400;
	letter-spacing: -0.005em;
	line-height: 1.2;
}

h2 { font-size: 1.1em; }
h3, h4, h5,
h6 { font-size: 1em; }

h1, h2, h3, h4, h5, h6 {
	margin-top: 18px;
	margin-bottom: 0;
}

h2, h3, h4, h5, h6 {
	font-weight: 700;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border: 0;
}

header,
footer {
	margin: 18px 0;
	text-align: center;
}

div.page-area {
	max-width: 990px;
	margin: 0 auto;
}

div.container {
	width: 85%;
	max-width: 690px;
	margin: 0 auto;
	padding: 10px 0;
}

header table {
	margin: 16px 0 9px 0;
	text-align: left;
	font-size: 0.9rem;
}

blockquote {
	font-style: italic;
	border-left-width: 5px;
	border-left-style: solid;
}

main {
	margin: 24px 0;
}

.tags, .meta, .posts b, .pages {
	font-size: 0.9rem;
}

div.tags {
	display: block;
	text-align: left;
}

span.tag {
	display: inline-block;
	margin-right: 9px;
}

ul.tags {
	list-style-type: none;
	display: inline-block;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
}

ul.tags > li {
	display: inline-block;
	margin-right: 7px;
}

.header-logo img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 4px solid #E1E1E1;
}

.header-logo img:hover {
	border-color: #F1F1F1;
}

.site-title {
	margin-top: 36px;
}

.entry-title {
	margin-bottom: 0;
}

.entry-title a {
	text-decoration: none;
}

.entry-meta {
	display: inline-block;
	margin-bottom: 0;
	font-weight: 700;
	font-size: 1em;
}

footer, .footnotes, span.caption, figcaption {
	font-size: 0.8em;
	letter-spacing: 0.015em;
}

.footnotes > ol p {
	margin: 10px 0;
}

span.caption {
	display: block;
}

header table, .footnotes, figcaption {
	line-height: 1.4;
}

.footnotes code {
	font-size: calc(var(--code-font-size) / var(--text-font-size));
}

.footer-link {
	margin: 5px 0;
}

.footer-link a {
	margin: 0px 2px;
}

div.posts, div.tags, div.pages {
	margin-top: 10px;
}

div.license {
	font-size: 0.8em;
	letter-spacing: 0.015em;
}

.hr {
	height: 1px;
	margin: 20px 0;
	background: #E1E1E1;
}

pre, code {
	font-family: Consolas, Menlo, monospace;
	line-height: 1.5;
	overflow-x: auto;
}

sup {
	font-weight: 700;
	line-height: 1;
	font-style: normal;
}

sup.b {
	font-weight: 400;
}
body {
	font-family: monitor web, Verdana, Geneva, Tahoma, sans-serif;
	line-height: 1.6875;
	font-feature-settings: "zero", "onum", "kern" off;
}

pre, code {
	font-family: "gt pressura mono web", Consolas, Menlo, monospace;
	font-variant-ligatures: none;
	font-feature-settings: "zero";
	line-height: 1.6875;
	font-style: normal;
	letter-spacing: 0;
}

/* line height adjustment */

h1 {
	font-size: 30px;
	line-height: 1.1875;
}


html {
	--code-font-size: 17.5px;
	--text-font-size: 17.75px;
	--text-font-size-print: 10.4pt;
	--code-font-size-print: 10.4pt;
	--light-mode-color: #111;
	--light-mode-code-color: #222;
	--dark-mode-color: #d3c6aa;
	--dark-mode-code-color: #d3c6aa;
	--light-mode-overall-background: #7f7f7f;
	--light-mode-page-background: #e4e4e4;
	--light-mode-code-background: #dadada;
	--dark-mode-code-accents: #E67e80;
	--dark-mode-text-accents:#E67e80;
	--light-mode-text-accents: #bd0026;
	--light-mode-link-color: #08519c;
	--dark-mode-link-color: #7fbbb3;
	--dark-mode-page-background: #272e33;
	--dark-mode-overall-background: #1e2326;
	--dark-mode-code-background: #2e383c;
	--light-mode-meta-color: #4c5a62;
	--caps-letter-spacing: 0.04em;

/* use defaults from theme
	--text-font-size: 18px;
	--code-font-size: 16px;
	--text-font-size-print: 11pt;
	--code-font-size-print: 10pt;
*/

/*  use defaults from theme
	--light-mode-color: #222;
	--light-mode-code-color: #000;
	--light-mode-background: #fafaf7;
	--light-mode-code-background: #eaeae7;
*/

/*   use defaults from theme
	--dark-mode-color: #95A0C9;
	--dark-mode-code-color: #b0c5ef;
	--dark-mode-background: #25283B;
	--dark-mode-code-background: #35384B;
	--dark-mode-overall-background: #15182B;
*/
}

/* text sizes for screen */
@media screen {
	body {
		/* tsssk, Apple */
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		-webkit-text-size-adjust: 100%;
	}

	.footnotes code {
		font-size: calc(var(--code-font-size) / var(--text-font-size));
	}
}

/* text sizes for print */
@media print {
	.footnotes code {
		font-size: calc(var(--code-font-size-print) / var(--text-font-size-print));
	}
}

h2.entry-title, header h2 {
	font-size: 1.1em;
	line-height: 1.55;
	font-variant-caps: unset;
	letter-spacing: unset;
	text-transform: unset;
}

h2.entry-title {
	font-weight: 400;
}

h2, h3, h4 {
	font-weight: 400;
	letter-spacing: var(--caps-letter-spacing);
	text-transform: uppercase;
}

/* don't use italic for block quotes. Rather, normal style and a mark */
blockquote {
	padding: 15px 0 15px 20px;
	font-style: normal;
}


blockquote h2 {
	margin-top: 0;
}

blockquote p {
	margin-top: 0;
	margin-bottom: 0;
}

@media screen and (prefers-color-scheme: light)  {
	body {
		background-color: var(--light-mode-overall-background);
	}

	pre, code {
		background-color: var(--light-mode-code-background);
	}

	.chroma { background-color: var(--light-mode-code-background) }
	.chroma .err { background-color: var(--light-mode-code-background) }
}

@media screen and (prefers-color-scheme: dark) {
	body {
		background-color: var(--dark-mode-overall-background);
	}

	pre, code {
		background-color: var(--dark-mode-code-background);
	}

	.chroma { background-color: var(--dark-mode-code-background) }
	.chroma .err { background-color: var(--dark-mode-code-background) }
}

.enclosed img {
	border: 2px solid orange;
	padding: 2px;
}

header table, .footnotes, figcaption {
	line-height: 1.55;
}

div.container {
    max-width: 700px;
}

footer, .footnotes, span.caption, figcaption {
	font-size: 0.8em;
	letter-spacing: 0.015em;
}

pre {
	padding: 4px 10px;
}

p code {
	padding: 4px 2px;
}

div.tags b, div.meta b, div.posts b, div.pages b {
	font-size: 1rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: var(--caps-letter-spacing);
}

th {
	font-weight: 400;
}

sup {
	font-size: 115%;
	vertical-align: baseline;
	font-feature-settings: "sups";
	font-weight: 400;
}

.light {
	background-color: #fafaf7;
}

.entry-meta {
	font-weight: 400;
	font-size: 1.1em;
}

figure.middle {
	min-width: 220px;
	max-width: 400px;
	display: inline-block;
	vertical-align: bottom;
}

@font-face{
	font-family: "gt pressura mono web";
	font-style: normal;
	font-weight: normal;
	font-stretch: normal;
	src: url("/fonts/GT-Pressura-Mono-Text.woff2") format("woff2"),
		url("/fonts/GT-Pressura-Mono-Text.woff") format("woff");
}

@font-face{
	font-family: 'graphik web';
	font-style: normal;
	font-weight: normal;
	font-stretch: normal;
	src: url('/fonts/Graphik-Regular-Web.woff2') format('woff2'),
		url('/fonts/Graphik-Regular-Web.woff') format('woff');
}

@font-face{
	font-family: 'graphik web';
	font-style: italic;
	font-weight: normal;
	font-stretch: normal;
	src: url('/fonts/Graphik-RegularItalic-Web.woff2') format('woff2'),
		url('/fonts/Graphik-RegularItalic-Web.woff') format('woff');
}

@font-face{
	font-family: 'graphik web';
	font-style: normal;
	font-weight: bold;
	font-stretch: normal;
	src: url('/fonts/Graphik-Semibold-Web.woff2') format('woff2'),
		url('/fonts/Graphik-Semibold-Web.woff') format('woff');
}

@font-face{
	font-family: 'monitor web';
	font-style: normal;
	font-weight: normal;
	font-stretch: normal;
	src: url('/fonts/MonitorTT-Normal.woff2') format('woff2'),
		url('/fonts/MonitorTT-Normal.woff') format('woff');
}

@font-face{
	font-family: 'monitor web';
	font-style: italic;
	font-weight: normal;
	font-stretch: normal;
	src: url('/fonts/MonitorTT-NormalItalic.woff2') format('woff2'),
		url('/fonts/MonitorTT-NormalItalic.woff') format('woff');
}

@font-face{
	font-family: 'monitor web';
	font-style: normal;
	font-weight: bold;
	font-stretch: normal;
	src: url('/fonts/MonitorTT-Bold.woff2') format('woff2'),
		url('/fonts/MonitorTT-Bold.woff') format('woff');
}

@font-face{
	font-family: 'curiosa web';
	font-style: normal;
	font-weight: normal;
	font-stretch: normal;
	src: url('/fonts/Curiosa-Regular.woff2') format('woff2'),
		url('/fonts/Curiosa-Regular.woff') format('woff');
}

@font-face{
	font-family: 'curiosa web';
	font-style: italic;
	font-weight: normal;
	font-stretch: normal;
	src: url('/fonts/Curiosa-Italic.woff2') format('woff2'),
		url('/fonts/Curiosa-Italic.woff') format('woff');
}

@font-face{
	font-family: 'curiosa web';
	font-style: normal;
	font-weight: bold;
	font-stretch: normal;
	src: url('/fonts/Curiosa-Bold.woff2') format('woff2'),
		url('/fonts/Curiosa-Bold.woff') format('woff');
}

/*  -------------------------------------
	-------------------------------------
SYNTAX HIGHLIGHTING
Generated by running: `hugo gen chromastyles --style=lovelace`
The CSS below is used to override some of the theme's choices
And match the background color
See "deactivated by Jaime." comments
The [markup.highlight] section in site config must declare: noClasses = false
 */

/*
DARK MODE HACKS
*/
@media (prefers-color-scheme: dark) {
/* Keyword */ .chroma .k { color: var(--dark-mode-code-accents) }
/* KeywordDeclaration */ .chroma .kd { color: var(--dark-mode-code-accents) }
/* KeywordNamespace */ .chroma .kn { color: var(--dark-mode-code-accents) }
/* KeywordPseudo */ .chroma .kp { color: var(--dark-mode-code-accents) }
/* KeywordReserved */ .chroma .kr { color: var(--dark-mode-code-accents) }
/* KeywordType */ .chroma .kt { color: var(--dark-mode-code-accents) }
}

/*
Now the lovelace style begins
*/

@media (prefers-color-scheme: light) {
/* Background  .chroma { background-color: #ECECEC } */
/* Other */ .chroma .x {  }
/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: auto; overflow: auto; display: block; }
/* LineHighlight */ .chroma .hl { display: block; width: 100%;background-color: #ffffcc }
/* LineNumbersTable */ .chroma .lnt { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .chroma .ln { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Keyword */ .chroma .k { color: #2838b0 }
/* KeywordConstant */ .chroma .kc { color: #444444 }
/* KeywordDeclaration */ .chroma .kd { color: #2838b0 }
/* KeywordNamespace */ .chroma .kn { color: #2838b0 }
/* KeywordPseudo */ .chroma .kp { color: #2838b0 }
/* KeywordReserved */ .chroma .kr { color: #2838b0 }
/* KeywordType */ .chroma .kt { color: #2838b0 }
/* Name */ .chroma .n {  }
/* NameAttribute */ /* deactivated by Jaime. Too much */
/* .chroma .na { color: #388038 } */
/* NameBuiltin */ /* deactivated by Jaime. Too much */
/* .chroma .nb { color: #388038 } */
/* NameBuiltinPseudo */ .chroma .bp { font-style: italic }
/* NameClass */ .chroma .nc { color: #287088 }
/* NameConstant */ .chroma .no { color: #b85820 }
/* NameDecorator */ .chroma .nd { color: #287088 }
/* NameEntity */ .chroma .ni { color: #709030 }
/* NameException */ .chroma .ne { color: #908828 }
/* NameFunction */  /* deactivated by Jaime. Too much */
/* .chroma .nf { color: #785840 } */
/* NameFunctionMagic */ .chroma .fm { color: #b85820 }
/* NameLabel */ .chroma .nl { color: #289870 }
/* NameNamespace */ .chroma .nn { color: #289870 }
/* NameOther */ .chroma .nx {  }
/* NameProperty */ .chroma .py {  }
/* NameTag */ .chroma .nt { color: #2838b0 }
/* NameVariable */ .chroma .nv { color: #b04040 }
/* NameVariableClass */ .chroma .vc {  }
/* NameVariableGlobal */ .chroma .vg { color: #908828 }
/* NameVariableInstance */ .chroma .vi {  }
/* NameVariableMagic */ .chroma .vm { color: #b85820 }
/* Literal */ .chroma .l {  }
/* LiteralDate */ .chroma .ld {  }
/* LiteralString */ .chroma .s { color: #b83838 }
/* LiteralStringAffix */ .chroma .sa { color: #444444 }
/* LiteralStringBacktick */ .chroma .sb { color: #b83838 }
/* LiteralStringChar */ .chroma .sc { color: #a848a8 }
/* LiteralStringDelimiter */ .chroma .dl { color: #b85820 }
/* LiteralStringDoc */ .chroma .sd { color: #b85820 }
/* LiteralStringDouble */ .chroma .s2 { color: #b83838 }
/* LiteralStringEscape */ .chroma .se { color: #709030 }
/* LiteralStringHeredoc */ .chroma .sh { color: #b83838 }
/* LiteralStringInterpol */ .chroma .si { color: #b83838; text-decoration: underline }
/* LiteralStringOther */ .chroma .sx { color: #a848a8 }
/* LiteralStringRegex */ .chroma .sr { color: #a848a8 }
/* LiteralStringSingle */ .chroma .s1 { color: #b83838 }
/* LiteralStringSymbol */ .chroma .ss { color: #b83838 }
/* LiteralNumber */ .chroma .m { color: #444444 }
/* LiteralNumberBin */ .chroma .mb { color: #444444 }
/* LiteralNumberFloat */ .chroma .mf { color: #444444 }
/* LiteralNumberHex */ .chroma .mh { color: #444444 }
/* LiteralNumberInteger */ .chroma .mi { color: #444444 }
/* LiteralNumberIntegerLong */ .chroma .il { color: #444444 }
/* LiteralNumberOct */ .chroma .mo { color: #444444 }
/* Operator */ .chroma .o { color: #666666 }
/* OperatorWord */ .chroma .ow { color: #a848a8 }
/* Punctuation */ .chroma .p { color: #888888 }
/* Comment */ .chroma .c { color: #888888 }
/* CommentHashbang */ .chroma .ch { color: #287088 }
/* CommentMultiline */ .chroma .cm { color: #888888 }
/* CommentSingle */ .chroma .c1 { color: #888888 }
/* CommentSpecial */ .chroma .cs { color: #888888 }
/* CommentPreproc */ .chroma .cp { color: #289870 }
/* CommentPreprocFile */ .chroma .cpf { color: #289870 }
/* Generic */ .chroma .g {  }
/* GenericDeleted */ .chroma .gd { color: #c02828 }
/* GenericEmph */ .chroma .ge { font-style: normal }
/* GenericError */ .chroma .gr { color: #c02828 }
/* GenericHeading */ .chroma .gh { color: #666666 }
/* GenericInserted */ .chroma .gi { color: #388038 }
/* GenericOutput */ .chroma .go { color: #666666 }
/* GenericPrompt */ .chroma .gp { color: #444444 }
/* GenericStrong */ .chroma .gs { font-weight: bold }
/* GenericSubheading */ .chroma .gu { color: #444444 }
/* GenericTraceback */ .chroma .gt { color: #2838b0 }
/* GenericUnderline */ .chroma .gl { text-decoration: underline }
/* Text */
  /* deactivated by Jaime. This seems rather iffy: /* .chroma . {  } */
/* TextWhitespace */ .chroma .w { color: #a89028 }
}