@import url('https://fonts.googleapis.com/css2?family=Miniver&display=swap" rel="stylesheet');

body {
	margin: 0;
	padding: 0;
	font-family: lucida grande,verdana,arial,helvetica;
	font-size: 12px;
}

img {
	max-width: 100%;
}

.outer {
	width: 1400px;
	margin: auto;
	position: relative;
}

.header {
	background: #000000;
	width: 100%;
	height: 160px;
	border: 1px solid black;
	background-image: url(starsbackground.png);
	background-size: cover;
}

.white {
	background: #FFF;
	border: 1px solid black;
	padding: 24px;
	min-height: calc(100vh - 280px);
	margin-bottom: 2rem;
}

.nav-item {
	background: #FFF;
	display: inline-block;
	border: 1px solid #000;
	position: relative;
	padding: 12px 24px;
	bottom: -1px;
}

.nav-item.active {
	border-bottom: 1px solid #FFF;
}


textarea.code {
	background: #000;
	color: #FFF;
	font-family: monospace;
	padding: 12px;
	width: 100%;
}

.breadcrumbs {
	background: #EEE;
	display: inline-block;
	padding: 3px 6px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #666;
}

.breadcrumbs a {
	text-decoration: none;
	color: #666;
	font-weight: bold;
}

h1 {
	background: #000;
	color: #FFF;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 3px 6px;
}

h2 {
	font-size: 1em;
	border-bottom: 1px dotted #000;
	margin-top: 2rem;
}

.border {
	border: 1px solid #000;
}

h2 a {
	text-decoration: none;
	color: #000;
}

.iframe {
	border: 0;
	width: 1025px;
	height: 850px;
}

a:link {
  color: grey;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: grey;
  background-color: transparent;
  text-decoration: none;
}

section{
    padding: 0px;
    display: flex;
    flex-direction: column;
}
section ul{
	list-style: none;
  white-space: nowrap;
  overflow: auto;
  padding-left: 10px;
}
section ul li{
		display: inline-block;
	  padding-right: 20px;
	  text-align: center;
		letter-spacing: 1px;
		cursor: pointer;
}
section ul li.active{
	font-style: italic;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0,0,0,0.6);
}

.text {
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.media {
    display: flex;
    flex-wrap: wrap;
}

.media .itemBox{
    position: relative;
    margin: 5px;
    display: block;
    padding: 10px;
		width: 120px;
		height: 185px;
}
.media .itemBox.hide{
    display: none;
}
.media .itemBox img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media .itemBox p{
		line-height: 1.5;
}

.media .itemBox:hover .overlay {
  opacity: 1;
}

details[open] > summary {margin-bottom: 20px;}

body {
	  padding: 0;
	}

.media .itemBox{l
	    position: relative;
	    margin: 5px;
	    display: block;
	    padding: 10px;
			width: 120px;
			height: 185px;
	}
	div.gallery-container {
		display: flex;
		overflow-x: auto;
		overflow-y: hidden;
		gap: 10px;
		width: 100%;
		height: 200px;
	}

	div.gallery {
		display: flex;
		flex-direction: column;
		flex-shrink: 0;
		width: 100px;
		box-sizing: border-box;
	}

	div.gallery img {
		width: 100%;
		height: auto;
	}

	div.desc {
		margin-top: auto;
		padding: 14px;
		text-align: center;
		font-size: 14px;
	}
