/* written by hand, with love */
:root {
	--text: #444;
	--border: #999;
	background-color: #eee;
	--coral: #c43636;
	--lightcoral: #E0A0A0;
	--compl:#278b8b;
}
@media (prefers-color-scheme: dark) {
	:root {
		--text: #bbb;
		--border: #777;
		background-color: #222;
	}
}
@font-face {
	font-family:'Iosevka';
	src:url('Iosevka.woff2');
}
@font-face {
	font-family:'Source Serif Light';
	src:url('SourceSerifPro-Light.woff2');
}
body {
	margin: auto;
	width: 99vw;
	min-height:100vh;
	font-family: 'Source Serif Light', 'Georgia', serif;
	font-weight:300;
	color:var(--text);
}
.topbar {
/*	overflow:hidden;
	background-color:#fff;
	position:fixed;
	top:0;
	width:100%;*/
	padding-top:0.5em;
	font-family:'Iosevka', 'monospace';
	font-size:1.1em;
}
.synte {
	display:inline;
	padding-left:1.2em;
	color:var(--text);
	font-size:1.1em;
}
.link {
	display:inline;
	float:right;
	margin-right:2.5vw;
}
.rss {
	display:inline;
	float:right;
	margin-right:5vw;
	padding:0 0.25em 0 1.2em;
	border: 1px dotted var(--coral);
	border-radius:3px;
}
.wrapper {
	margin: 1em max(1em, 10vw - 2em);
	min-height: 80vh;
	max-width: 70ch;
}
.date {
	float:right;
	font-family:'Iosevka', 'monospace';
}
span.date {
	font-size:.8em;
	color:grey;
}
h1 {
	margin: 2.5em 0;
	padding-left:1ch;
	border-left:2px dotted var(--coral);
	font-family:'Iosevka', 'monospace';
	font-size:1.8em;
}
#logo {
	position:relative;
	top:-0.35em;
	color:var(--coral);
}
.posts {
	margin-bottom:5em;
	max-width:min(45ch, 99vw - 2em);
}
.pin {
	position:relative;
	top:-0.5em;
	font-size:0.5em;
	filter:grayscale(100%);
}
.post {
	margin-bottom:2em;
	padding: 0 0.2em;
	border:2px dotted var(--border);
	border-radius:0.5em;
	font-size:1.15em;
}
.summary {
	padding: 0 0.5em;
}
.postlink {
	display:block;
	padding:0.5em;
	padding-bottom:1.5em;
	color:var(--text);
}
.pinned {
}
h2 {
	margin:0.3em 0;
	font-family:'Iosevka', 'monospace';
	font-size:1.15em;
	font-weight:500;
	padding-bottom:0.2em;
	color:var(--lightcoral);
}
.content h2 {
	margin-top:2em;
}
a {
	color:var(--coral);
	text-decoration:none;
}
a:hover {
	color:var(--lightcoral);
}
.back {
	font-size:0.8em;
}
.content {
	padding:0.5em 0 4em 0;
}
code {
	font-family:'Iosevka', 'monospace';
	margin:0 0.25em;
}
.updated {
	color:grey;
}
::selection {
  color:black;
  background: #010101;
}
p.ring {
	width:max-content;
	margin:0 auto;
	padding:0.25em;
	font-family:'Iosevka', 'monospace';
	font-size: 1.2em;
}
a.joy {
	display:inline-block;
	padding:0 .1em;
	border-bottom:1px solid #562a44;
	color:#2d534d;
}

img {
	width: 90%;
	margin: 2em 1em;
}

hr {
	margin: 4em 0 2em 0;
}

blockquote {
	margin-left: 1.5em;
	padding-left: 2em;
	border-left: 2px dotted #aaa;
}
