.modalImg{
	cursor: pointer;
}
.modal {
	display: none; /* Hidden by default */
	transition: opacity .25s;
	position: fixed; /* Stay in place */
	z-index: 2000; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow-y: hidden;
	background-color: rgb(15,0,15); /* Fallback color */
	background-color: rgba(15,0,15,0.4); /* Black w/ opacity */
	line-height: 100%;
}
.modal-content{
	width: 99%;
	max-width: 1200px;
	text-align: center;
	
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.modal-content img{
	width: 100%;
	height: auto;
	
	/*
	object-fit: contain;
	max-height: 680px;
	max-height: auto;
	*/
	
	/* Prevent Highlighting */
	-webkit-user-select: none; /* Chrome/Safari */ 
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */
	-o-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color:transparent;
	outline-style:none;
	
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.6);
	/*
	padding: 5px;
	background-color: #75F8FF;
	background-color: rgba(117,248,255,0.6);
	*/
}

.modal-content .tall img{
	width: auto;
	height: 500px;
}

/*
.darkmode .modal-content img{
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.6);
}
*/

.modal-content .text{
	margin-left: auto;
	margin-right: auto;
	
	width: fit-content;
	block-size: fit-content;
}