body {
	margin: 0;
}
#container {
	position: relative;
	width: 100%; /* Full width: cover screen */
	height: 100%; /* Full height: cover screen */
}
#innerContainer {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	max-width: 100%; /* Full width: cover screen */
	height: auto; /* Full height: cover screen */
}
.img-container {
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	position: relative;
	
}
.img-container div {
	object-fit: fill;
	object-position: center;
	position: absolute;
	width: 900px;
	height: 700px;
	max-width:90vw;
	z-index: -1;
	/*	center it on the screen */
	margin: 0;
	top: 45%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}

#displayImg {
	background-position: center;
	/* background-image: url("../imgSlideShow/B08A09_57934.jpg"); */
  transition: background-image 1s;
  background-repeat: no-repeat;  
  background-size: contain;
}

.img-container div img{
	width: 70%;
	height:  auto;
}

/* The text displayed for each image: file name, caption & location */
p, h3, h4 {
	color: white;
}

#modal {
	position: fixed; /* Stay in place */
	z-index: 2; /* Sit on top */
	padding-top: 0px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width: cover screen */
	height: 100%; /* Full height: cover screen */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
	text-align: center;
}

/* Dummy img tag, where the image will be inserted */
#modal-content {
	margin: auto;
	display: block;
	width: auto;
}
	/* The "Click Anywhere To Exit" text */
	#notice {
		width: 100%;
		color: rgba(255,255,255, 0.6);
		position: absolute;
		text-align: center;
		z-index: 3;
		font-size: 30px;
		margin: 0.3vw;
	}

	#displayTxtOuter {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 100vw;
		height: auto;
		position: absolute;
		top: 50px;
	}
	#displayTxt {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 30vw;
		height: auto;
	}
