html {
	background-color: #282C3C;
}
body {
	font-family: Georgia, serif;
	color: #CEC9BB;
	text-decoration: none;
}
a {
	color: #D6A851;
}
a:hover {
	color: #B25266;
}
hr {
	border: none;
	margin-top: 14px;
	border-top: dashed 2px #CEC9BB;
}
#site {
	margin: auto;
	max-width: 640px;
}

/* Common base element styles */
#sidebar, #content {
	display: inline-block;
	float: left;
	padding: 8px;
	box-sizing: border-box;
}
/* Sidebar div */
#sidebar {
	width: 128px;
}
/* Sidebar site logo */
#logo {
	max-width: 104px;
	image-rendering: pixelated;
}
/* Sidebar nav links */
#sidebar ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#sidebar ul li a {
	display: block;
	padding: 2px 8px;
	text-align: right;
	text-decoration: none;
}
#sidebar ul li a:hover:not(.selected) {
	text-decoration: underline;
}
#sidebar ul li a.selected {
	color: #CEC9BB;
	cursor: default;
}
/* Content div */
#content {
	width: 512px;
	overflow: hidden;
}
/* Homepage social media buttons */
#socialbuttons {
	text-align: center;
}
#socialbuttons a {
	display: inline-block;
	margin: 8px;
}
#socialbuttons a img {
	background-color: #CEC9BB;
	vertical-align: bottom;
	width: 64px;
}
#socialbuttons a img:hover {
	background-color: #D6A851;
}
/* Footer */
#footer, #footer .secret {
	font-size: 14px;
	font-style: italic;
	color: #696682;
	text-decoration: none;
}

/* Art gallery */
.thumbnail {
	border: 2px solid transparent;
	color: #CEC9BB;
	display: inline-block;
	width: 144px;
	padding: 2px;
	text-decoration: none;
	overflow: hidden;
	font-size: 14px;
	image-rendering: pixelated;
}
.thumbnail:hover {
	border: 2px solid #fff;
	color: #CEC9BB;
}
.thumbnail img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

/* Small window size */
@media only screen and (max-width: 640px) {
	/* Un-flex website view */
	#site {
		display: block;
	}
	#sidebar ul li a {
		text-align: left;
	}
	/* Make content full width */
	#content {
		width: 100%;
	}
}