body {
	font-family: sans-serif;
	line-height: 1.65;
	font-size: 18px;
	color: #333;
}

h1, h2, h3 {
  line-height: 1.2
}

pre {
	font-family: monospace;
}

table {
	margin: auto;
}


th {
	padding-left: 1em;
	padding-right: 1em;
}

tbody td {
	padding-top: 0.4em;
}

.home {
	color: #333 !important;
	text-decoration: none;	
}

.wrapper {
	padding: 1.5em;
	margin: auto;
	max-width: 50em;
	min-width: 260px;
}

.nav {
	margin-top: 10vh;
	border-bottom: 5px solid;
	margin-bottom: 3em;
	position: relative;
}

.nav > h1 {
	text-align: end;
	margin: 0.3em;
}

.bonsai-icon {
	height: 4em;
	image-rendering: pixelated;
	position: absolute;
	bottom: 0;
}

.box {
	border-radius: 5px;
	padding: 10px;
}

.post {
	display: grid;
	grid-gap: 1em;
	padding-left: 1em;
	padding-right: 1em;
	margin-bottom: 2em;
}

.post > * {
	padding: 0;
	margin: 0;
}

@media screen and (min-width: 600px) {
	.post {
		grid-template-areas:
			"date author title";
		grid-template-columns: auto auto 1fr;
	}
}

@media screen and (max-width: 600px) {
	.post {
		grid-template-areas:
			"title title"
			"date author";
		grid-template-columns: auto 1fr;
	}
}



.title {
	grid-area: title;
	font-weight: bold;
	color: #111;
	text-decoration: none;	
}

.title:visited {
	color: #666;
}

.author {
	grid-area: author;
}

.date {
	grid-area: date;
}
