body {
	background-color: grey;
	padding: 0;
	margin: 0;
}

.imgContainer {
	background-color: rgba(200, 200, 200, 1.0);
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
}

.thumbnail {
	background-color: rgba(220, 220, 220, 1.0);
	padding: 0;
	margin: 25px;
}

.thumbIMG {
	width: 100px;
	border-style: solid;
	border-bottom-width: 3px;
	border-color: white;
}

.thumbIMG:hover {
	opacity: 0.5;
}

.IMGViewer {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(95%, 95%, 95%, 0.5);
	width: 80%;
	height: 80%;
	margin: auto;
	display: none;
}

.exitButton {
	height: 25px;
	width: 25px;
	border-style: outset;
	border-width: 3px;
}

#viewerExit {
	position: absolute;
	right: 0;
}

.largeIMG {
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
	height: 100%;
	background-color: rgba(95%, 95%, 95%, 1);
}