body {
	color: #cccccc;
	background-color: #505050;
	margin: 0;
	padding: 0;
	
	font-family: Helvetica;
	
	background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
                url('bg.png');
}

/* div.darkmode {
	width: 100%;
	right: 0;
	left: auto;
	margin: 0;
	padding: 0;
	padding-right: 1em;
	text-align: right;
	float: right;
}

div.darkmode a {
	color: #555555;
} */

a {
	color: #35BBC7;
}

div.siteBorder {
	background-color: black;
	margin-left: 80pt;
	margin-right: 80pt;
	padding-top: 2em;
	padding-bottom: 2em;
}


div.heading {
	margin-top: 1em;
	margin-bottom: 1em;
}

div.heading img {
	display: block;
	width: 200pt;
	height: 200pt;
	margin-left: auto;
	margin-right: auto;
}

div.heading p {
	width: 100%;
	text-align: center;
	font-size: 16pt;
	text-decoration: underline;
}

div.heading p.subtitle {
	font-size: 11pt;
	font-style: italic;
	text-align: center;
	text-decoration: none;
}

div.content {
	margin-top: 2em;
	margin-left: auto;
	margin-right: auto;
	width: 480pt;
}

div.content p.question {
	font-size: 13pt;
	font-weight: lighter;
	font-style: italic;
}

div.content p.answer {
	margin-left: 3em;
}

div.content h1 {
	text-align: center;
	font-size: 14pt;
}

div.content div.embed {
	margin: auto;
	text-align: center;
	margin-top: 1em;
	margin-bottom: 1em;
}

div.content p.footnote {
	font-style: italic;
	font-size: 11pt;
}

div.footer {
	padding-top: 2em;
	padding-bottom: 2em;
	color: #c0c0c0;
	margin-left: auto;
	margin-right: auto;
	width: 480pt;
	text-align: center;
}

div.footer a {
	color: white;
}

/* Gallery code */

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  width: 480pt;
  position: relative;
  margin: auto;
  margin-top: 2em;
}

.slideshow-container img {
  height: 480pt;
  width: auto;
  margin: auto;
  padding: auto;
  border: solid 2px #505050;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2.0s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* / Gallery code */


@media (prefers-color-scheme: light) {
	body {
		color: black;
	}
	
	a {
		color: blue;
	}
	
	div.siteBorder {
		background-color: white;
	}
	
	div.heading img {
		border-radius: 10%;
		border: solid 1pt #c0c0c0;
	}
	div.footer {
		color: #505050;
	}
	
	div.footer a {
		color: black;
	}
	
	.slideshow-container img {
		border: none;
	}
}