body {
	background-image: url(/image/background);
	background-size: cover;
	background-attachment: fixed;
	background-color: unset !important;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	background-image: url(/image/background);
	background-size: cover;
	filter: blur(20px);
}

.sidebar-blogname {
	font-size: 1.5em;
	color: var(--header-name-true-clr);
	margin-bottom: 1em;
}

.post-list {
	position: relative;
	z-index: 2;
	width: 55%;
	margin: 0 auto;
	padding: 2em 1em;
	font-size: 1em;
	line-height: 1.5em;
}

article {
	margin: 0 auto 1em;
	padding: 1em 2em;
	background-color: var(--postlist-item-bg);
	border-radius: 0.5em;
}

article .title {
	font-size: 1.3em;
	line-height: 1.2em;
	color: var(--txt-main-clr);
	text-decoration: none;
	transition: background-size 300ms ease-in-out, color 0.2s;
	font-family: 'Unifont';
}

article .title:hover {
	color: var(--link-hover-clr);
}

article p.digest {
	font-family: "Noto Serif SC Regular";
	color: var(--txt-sub-clr);
}

article .tags {
	display: inline;
	padding: 0;
	list-style-type: "#";
}

article .tag,
article .tag::marker {
	color: var(--txt-sub-clr);
	font-size: 0.8em;
}

article .tag:first-child {
	margin-left: 1em;
}

article .tag {
	display: list-item;
	width: auto;
	float: left;
	margin-right: 1.5em;
}

article .tag a {
	text-decoration: none;
	color: var(--txt-sub-clr);
}

article div.date {
	text-align: right;
	color: var(--txt-sub-clr);
	font-size: 0.8em;
}

aside {
	position: fixed !important;
	width: 18%;
	height: 100vh;
	padding: 2em 1em;
	background-color: var(--homepage-aside-bg);
}
