body {
	font-family: sans-serif;
	font-size: large;
	color: white;
	background-color: #004524;
	background-image: url('background.png');
	background-repeat: repeat;
	background-size: 72px 72px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 6px;
	padding-right: 6px;
}

a, a:visited {
	color: white;
	padding: 2px;
	border-bottom: 3px dotted gray;
	text-decoration: none;
}

h1, h2, h3 {
	display: inline;
}

h1 {
	font-size: 1.3em;
	padding: 8px;
}

h2 {
	font-size: 1.2em;
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0, 15, 0, 0.85);
	text-align: center;
	z-index: 9;
}

#menu {
	vertical-align: middle;
	border-bottom: 1px solid #321414;
	padding-bottom: 4px;
	width: 100%;
	box-shadow: 2px 2px 8px 0px #321414;
}

#menu img {
	height: 40px;
	vertical-align: middle;
}

#menu div {
	display: inline;
}

#menu a {

}

#menu #menu-right-container {
	float: right;
	margin-right: 16px;
}

#content {
	vertical-align: top;
	width: 100%;
	min-height: calc(100vh - 100px); /* for footer */
}

#content .content-chapter, #content .content-window {
	display: none;
	padding: 6px;
	margin: 6px;
	background-color: rgba(8, 83, 50, 0.7);
}

#content .content-chapter:first-child {
	background-image: url('logo.png');
	background-position: right;
	background-repeat: no-repeat;
	background-size: 140px 128px;
	background-blend-mode: multiply;
}

#location-list {
	list-style-type: "\1F4CC";
	text-align: justify;
}

#content .content-window {
	width: 92.5vw;
	max-width: 775px;
	min-height: calc(100vh - 115px); /* for footer */
}

#content #map-container {
	width: 100%;
	height: 100%;
}

#footer {
	vertical-align: middle;
	text-align: center;
	border-top: 2px dashed #321414;
	padding-bottom: 4px;
	padding-top: 6px;
	width: 100%;
	font-size: medium;
}

#window {
	
}

#window-control {
	position: absolute;
	right: 10px;
	top: 10px;
	background-color: white;
	padding: 2px;
	border-radius: 16px;
	font-size: x-large;
	box-shadow: 1px 1px 12px 2px gray;
}

#window img {
	max-height: 75vh;
	max-width: 90vw;
	height: auto;
	width: auto;
	margin: 20px 20px 5px 20px; /*top, right, bottom, and left*/
	border-radius: 1px;
}

#window a {
	white-space: nowrap;
	font-size: large;
}

#window .image-controls {
	width: 100%;
	text-align: left;
	font-size: large;
	margin: 5px 20px 5px 20px;
}

#window .image-controls .image-controls-without-like, #window .image-controls .image-controls-w-like {
	display: none;
}

#window .plus_1 {
	color: black;
	font-weight: bold;
	padding: 3px 5px 3px 5px;
	background-color: white;
	border-radius: 16px;
	box-shadow: 1px 1px 12px 2px gray;
}

#message {

}

#loading {
	background-color: rgba(0, 15, 0, 0.33);
}

#loading img{
	animation-duration: 2s;
	animation-name: rotation;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	height: 180px;
	margin-top: calc(50vh - 90px);
	opacity: 0.5;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

#message #message-container {
	padding-top: 40px;
	font-weight: bold;
}