body {
	font-family: "Libertinus Sans";
	font-size: 18px;
	background-color: rgb(83, 83, 83);
	color: white;
}

a {
	color: orange;
	text-decoration: none;
}

a:hover {
	color: rgb(255, 192, 75);
	text-decoration: underline;
}


header {
	background-color: rgb(29, 29, 29);
	text-align: left;
	margin-bottom: 10px;
	color: white;
	font-size: 22px;
}

header .current {
	background-color: rgb(131, 78, 0);
}

header a {
	color: white;
	text-decoration: none;
}

header ul {
  	list-style-type: none;
  	margin: 0;
  	padding: 10px;
}

header li {
  	display: inline;
	padding: 10px;
}

header li:hover {
	background-color: rgb(201, 120, 0);
}



article {
	border: 5px solid rgb(0, 0, 0);
	border-radius: 10px;
	padding: 5px;
	margin-top: 10px;
	margin-bottom: 10px;;
	margin-left: 10%;
	margin-right: 10%;
	display: flex;
  	flex-wrap: nowrap;
}

article img,iframe {
	width: 25%;
	align-self: center;
}

article .box {
  	width: 75%;
  	margin-left: 15px;
  	margin-right: 15px;
}

article .introbox {
  	width: 100%;
  	margin-left: 15px;
  	margin-right: 15px;
}

article .imgbox {
  	width: 25%;
  	margin-left: 15px;
  	margin-right: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

article .imgbox img {
  	width: 100%;
	height: auto;
  	margin: 5px;
}


.gallery {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-content: center;
	height: 100px;
	margin: 15px;
}

.thumbnail {
	padding: 5px;
	width:auto;
	height:inherit;
	object-fit: contain;
	opacity: 60%;
}

.thumbnail:hover {
	opacity: 100%;
}


.viewer {
	display: none;
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
}
.viewer-content {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
	width: 80%;
	height: 80%;
	object-fit: scale-down;
	object-position: center;
}
.viewer-close,
.viewer-prev,
.viewer-next {
	position: absolute;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}
.viewer-close {
	top: 15px;
	right: 35px;	
	cursor: pointer;
}
.viewer-prev,
.viewer-next {
	height: 100%;
	width: 25%;
}
.viewer-prev {
	left: 0;
}
.viewer-next {
	right: 0;
}
.arrow {
	display: inline-block;
	position: relative;
	width: 100%;
	top: 50%;
	transform: translate(0, -50%);
	cursor: pointer;
}
.viewer-prev .arrow {
	left: 15px;
	text-align: left;
}
.viewer-next .arrow {
	right: 15px;
	text-align: right;
}
.viewer-close::hover,
.viewer-close::focus,
.viewer-prev::hover,
.viewer-prev::focus,
.viewer-next::hover,
.viewer-next::focus {
	color: #bbb;
	text-decoration: none;
}
.viewer-browse {
	position: absolute;	
	bottom: 15px;
	width: 100%;
	text-align: center;
}
.viewer-thumbnail {
	position: relative;
	display: inline-block;
	width: 3%;
	min-width: 40px;
	margin-left: 0.5%;
	margin-right: 0.5%;
	cursor: pointer;
	/*transition: 0.3s;*/
}
.viewer-thumbnail::after {
	content: "";
	display: block;
	padding-bottom: 100%;
}
.viewer-thumbnail::hover {
	opacity: 0.7;
}
#viewer-thumbnail-prev.viewer-thumbnail,  #viewer-thumbnail-next.viewer-thumbnail  {
	border: 1px solid #a1a1a1;
}
#viewer-thumbnail-curr.viewer-thumbnail  {
	border: 2px solid #f1f1f1;
}
.viewer-thumbnail img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}