body {
	padding: 8px;
	margin: 0;
	background: #ebe6e2 url('/back.png');
	font-family: Kurale;
	font-size: 14px;
	color: #333333;
	line-height: 1.5;
}

pre {
	font-size: 16px;
	font-family: inherit;
	text-shadow: rgba(255,255,255,0.5) 0 1px 1px;
	white-space: pre-wrap;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

h1 {
	font-weight: 300;
  color: hsl(53, 26%, 44%);
  text-shadow: rgba(255,255,255,0.5) 1px 1px 1px;
}

h4 {
	font-weight: 300;
	color: #ede1aa;
	text-shadow: rgba(0,0,0,0.5) 1px 1px 1px;
}

a {
	color: #ede1aa;
	text-shadow: rgba(0,0,0,0.5) 1px 1px 1px;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.maingrid {
	/*display: grid;*/
	max-width: 100%;
	/*grid-template-areas:
    "logo header header header"
    "content content content content";*/
}

.logo {
	grid-area: logo;
}

.header {
	grid-area: header;
	margin-bottom: 12px;
}

.time {
	padding: 16px 0;
	border-top: 1px dashed rgba(0,0,0,0.2);
	border-bottom: 1px dashed rgba(0,0,0,0.2);
}

.content {
	grid-area: content;

	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	grid-gap: 24px;
	/*grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));*/
}

.content > pre {
	border: 1px dashed rgba(0,0,0,0.2);
	padding: 8px;
}