html {
	background-color: #282C3C;
}
body {
	font-family: Georgia, serif;
	color: #CEC9BB;
}
hr {
	border: none;
	border-top: dashed 2px #CEC9BB;
	margin-left: 0;
	width: 64px;
}
h1 {
	margin: 0px 8px;
}
h2 {
	margin: 8px 0px;
}
h3 {
	margin: 8px 0px;
}
a {
	color: #D6A851;
	text-decoration: none;
}
a:hover:not(.selected) {
	color: #B25266;
	text-decoration: underline;
}
.container {
	display: flex;
}
.child {
	margin: 0px 16px;
	flex: 1;
}
/* Main website area */
#main {
	margin: auto;
	max-width: 800px;
	padding: 8px;
}
/* Left sidebar */
#sidebar {
	flex: 0.25;
}
#sidebar hr {
	margin: 12px 32px;
	width: auto;
}
#sidebarLinks {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#sidebarLinks li a {
	display: block;
	padding: 2px 8px;
}
#sidebarLinks li a.selected {
	color: #CEC9BB;
	cursor: default;
}
#sidebarSocial {
	text-align: center;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
#sidebarSocial li {
	display: inline-block;
	background-color: #CEC9BB;
	margin: 2px;
}
#sidebarSocial li:hover {
	background-color: #D6A851;
}
#sidebarSocial li a img {
	height: 32px;
	display: block;
}
/* Right content */
#content {
	flex: 1;
}
#footer {
	color: #696682;
	margin-top: 32px;
	font-size: 14px;
	font-style: italic;
}

/* Art gallery thumbnails */
.thumbnail {
	display: inline-block;
	width: 192px;
	overflow: hidden;
}

.thumbnail img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

/* Art modal view */
#modal-div {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
/* Modal image */
#modal-img {
	position: fixed;
	left: 50vw;
	top: 50vh;
	transform: translate(-50%, -50%);
	max-width: 75vw;
	max-height: 75vh;
}