html {
	--main_text_color: #9d69a3;
	--main_bg_color: #d6d4ef;
	--link_color: #ff5d9d;
	--post_text_color: #5f2449;
	--post_bg_color: #fdd2c5;
}

body {
	color: var(--main_text_color);
	background: var(--main_bg_color);
	text-align: center;
}
h1, h2, h3 {
	text-decoration: overline;
	margin: 0px;
	margin-top: 5px;
}
a, a:visited {
	color: var(--link_color);
}
.bin {
	color: var(--post_text_color);
	background: var(--post_bg_color);
	text-align: center;
	display: inline-block;
	padding: 5px;
	border: 3px solid var(--link_color);
	max-width: 600px;
	vertical-align: top;
}
.bin a {
	display: block;
}
.blockContainer {
	margin: 20px;
}
.archive {
	max-width: 300px;
	position: fixed;
	z-index:1;
	top: 0;
	left: 0;
}
.blogPostArea {
	margin-left: 200px;
	max-width: 1100px;
}
.postBig {
	text-align: left;
	font-size: 15pt;
}
.postBig h1, h2, h3 {
	text-align: center;
}
.postBig h3 {
	text-decoration: none;
	font-style: italic;
}
.postSmall {
	max-width: 300px;
}
.postSmall h3 {
	text-decoration: none;
	font-style: italic;
}
table { margin-left: auto; margin-right: auto; }
table, td {
	border: 3px solid var(--link_color);
}

@media screen and (max-width: 800px) {
	.archive {
		position: static;
	}
	#list {
		font-size: 15pt;
	}
	.blogPostArea {
		margin-left: 0;
	}
}
	