body{
	font-family:Rubik, sans-serif;
}

/* Top header */
.site-header{
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding: 16px 0;
	margin-bottom: 12px;
	border-bottom: 1px solid rgb(239, 239, 239);
}
.site-nav{
	display: flex;
	gap: 12px;
}
.site-nav a{
	font-size: 0.9em;
	color: rgb(110, 110, 110);
	text-decoration: none;
}
.site-nav a:hover{
	color: rgb(60, 60, 60);
}
.site-title{
	font-weight: bold;
	font-size: large;
	color: rgb(110, 110, 110);
	text-decoration: none;
	cursor: pointer;
}

/* Footer */
.site-footer{
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 24px;
	padding: 14px 0;
	border-top: 1px solid rgb(239, 239, 239);
}
.footer-year{
	font-size: 0.9em;
	color: rgb(110, 110, 110);
}
.title{
	font-size: 1.1em;
	font-weight: 600;
	color: rgb(110, 110, 110);
	text-decoration: none;
}
a.title:visited{
	color: rgb(110, 110, 110);
}
.post h1{
	margin: 0;
	font-size: 1.1em;
	font-weight: 600;
}
.post{
	max-width:1000px;
	margin-left: auto;
	margin-right: auto;
}
.top_title{
	font-weight:bold;
	font-size: large;
	color: rgb(110, 110, 110);
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
}
.date_mod{
	font-size: 0.9em;
	color: rgb(110, 110, 110);
	font-style: italic;
}
.counter{
	color: rgb(239, 239, 239);
}
.subscribe{
	font-size: 0.9em;
	color: rgb(110, 110, 110);
	font-style: italic;
}
#paginator{
	max-width:1000px;
	margin-left: auto;
	margin-right: auto;
}

/* Homepage post list */
.post-index-list{
	padding-top: 8px;
}
.index-heading{
	margin: 0 0 10px 0;
	font-size: 1em;
	font-weight: 600;
	color: rgb(110, 110, 110);
}
.post-list-item{
	display: flex;
	gap: 14px;
	align-items: baseline;
	margin: 15px 0;
}
.post-list-date{
	min-width: 95px;
	font-size: 0.9em;
	color: rgb(110, 110, 110);
}
.post-list-empty{
	font-size: 0.95em;
	color: rgb(110, 110, 110);
}

/* Images: constrain to container width */
.post img{
	max-width: 100%;
	height: auto;
}

/* Float images: use ![left](url) or ![right](url) in markdown */
.post img.img-left{
	float: left;
	margin: 0 1em 1em 0;
	max-width: 50%;
}
.post img.img-right{
	float: right;
	margin: 0 0 1em 1em;
	max-width: 50%;
}

/* Clear floats after a post */
.post::after{
	content: "";
	display: table;
	clear: both;
}

/* Side menu */
.side-menu{
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 10px 8px;
	background: rgb(250, 250, 250);
	border-right: 1px solid rgb(239, 239, 239);
	border-top: 1px solid rgb(239, 239, 239);
	border-bottom: 1px solid rgb(239, 239, 239);
	border-radius: 0 6px 6px 0;
	z-index: 100;
}
.side-menu a{
	font-size: 0.75em;
	color: rgb(110, 110, 110);
	text-decoration: none;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	padding: 4px 2px;
}
.side-menu a:hover{
	color: rgb(60, 60, 60);
}

/* Contact form */
.contact-form{
	max-width: 500px;
}
.contact-form label{
	display: block;
	margin-top: 12px;
	font-size: 0.9em;
	color: rgb(110, 110, 110);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
	width: 100%;
	padding: 8px;
	margin-top: 4px;
	border: 1px solid rgb(200, 200, 200);
	border-radius: 4px;
	font-family: inherit;
	font-size: 1em;
}
.contact-form textarea{
	min-height: 150px;
	resize: vertical;
}
.contact-form button{
	margin-top: 16px;
}
.captcha-box{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}
.captcha-box input{
	width: 80px;
}