/* heading, main */
#heading, #heading a {
	text-align: center;
	color: black;
}
#navbar {
	height: auto;
	width: 100%;
	background-color: #404040;
	display: block;
}
#navbar a {
	padding: 8.5px 10px;
	font-size: 20px;
	display: inline-block;
	text-decoration: none;
}
#navbar a:hover {
	background-color: rgba(0, 0, 0, 0.5);
}
#navbar * {
	color: white;
}
body {
	margin: 0px;
}
#main-page {
	margin: 16px;
	word-wrap: break-word;
}
/* sharing */
#share.share-shown {
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.9);
}
#share.share-shown * {
	text-align: center;
	color: white;
}
.close-button {
	font-size: 60px;
	position: fixed;
	top: 0px;
	right: 10px;
	color: white;
	text-decoration: none;
}
#share p {
	margin: 5px 20px;
}
#share.share-hidden {
	display: none;
}
#share-url {
	display: none;
}
/* sharing (no script) */
#share.noscript {
	margin: 16px;
}
#share-buttons a {
	padding: 10px;
	font-size: 30px;
	display: inline-block;
}
/* */
* {
	font-family: arial;
}
p {
	font-size: 16px;
	line-height: 23px;
}
a {
	color: #0e5fe4;
}
.citation:focus {
	background-color: rgba(255, 255, 0, 0.5);
	font-weight: bold;
}

[class*="screenshot-"] {
	display: inline-block;
	margin: .75vh;
	position: relative;
	overflow: hidden; /* prevents menu glitching when hovering over the very bottom of the element*/
}
.screenshot-tweet {
}
.screenshotMenu {
	background-color: transparent;
	width: 100%;
	height: 0px;
	position: absolute;
	bottom: 0;
	transition: 0.3s;
}
.screenshotMenu .inner {
	padding: .75vh;
}
.screenshotMenu, .screenshotMenu * {
	color: transparent;
}
[class*="screenshot-"]:hover .screenshotMenu {
	height: 150px/*20vh*/;
	background-color: rgba(0, 0, 0, 0.7);
	overflow: auto;
}
[class*="screenshot-"]:hover .screenshotMenu * {
	color: white;
}
img {
	max-width: 95%;
}
img.sample-img {
	border: thick solid grey;
}
.screenshot-tweet img {
	max-width: 100%;
	max-height: 100%;
}
/* not for mobile */
@media only screen and (min-width: 768px) {
	.screenshot-tweet {
		width: 300px;
		height: 420px;
	}
}
/* for mobile */
@media only screen and (max-width: 768px) {
	@media screen and (orientation: landscape) {
		.screenshot-tweet {
			width: 31vw;
			height: 43.4vw;
		}
	}
	@media screen and (orientation: portrait) {
		.screenshot-tweet {
			width: 40vw;
			height: 63vw;
		}
	}
}