body {
	margin: 0px;
	display: flex; 
	flex-direction: row; 
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: rgba(0, 0, 0, 0.0);
}


#bw-background {
	background: 
		radial-gradient(ellipse,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 75%, rgba(0, 0, 0, 1) 100%), 
		url("/img/grain tile.png");
	position: fixed;
	min-height: 100vh;
	min-width: 100vw;
	top: 0;
	left: 0;
	z-index: -99;
	background-attachment: fixed;
	transition: opacity 4s;
}

#color-background {
	background: 
		radial-gradient(ellipse,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.9) 100%), 
		url("/img/color grain tile.png");
	position: fixed;
	min-height: 100vh;
	min-width: 100vw;
	top: 0;
	left: 0;
	z-index: -100;
	background-attachment: fixed;
}

#menu {
	color: rgba(255, 255, 255, 0.2);
	text-align: center;
	font-family: serif;
	font-variant: small-caps;
	letter-spacing: 1px;
	line-height: 2.0;
	font-size: 2.5em;
	transition: visibility 0s 1s, opacity 1s linear;
	
	& > a {
		cursor: pointer;
		transition: color 0.3s, text-shadow 0.3s;
		&:link, &:visited {
			color: inherit;
			text-decoration: none;
		}
		&#gloom  {
			&:hover {
				transition: color 3s 1s, text-shadow 2s;
				color: #000;
			text-shadow: 
				0px 0px 3px #222;
			}
		}
		&#color  {
			&:hover {
				transition: color 3s ease-in, text-shadow 2s 2.5s;
				color: rgba(140, 0, 140, 0.9);
				text-shadow: none;
			}
		}
		&:hover {
			transition: color 3s, text-shadow 2s;
			color: #fff;
			text-shadow: 
				0px 0px 10px #fff, 
				0px 0px 20px #fff, 
				0px 0px 40px #fff, 
				0px 0px 56px #fff;
		}
		&:active {
			color: inherit;
			text-decoration: none;
		}
		&::selection {
			color: none;
			background: none;
		}
		&::-moz-selection {
			color: none;
			background: none;
		}
	}
	
	&::selection {
		color: none;
		background: none;
	}
	&::-moz-selection {
		color: none;
		background: none;
	}
}

#returnArrowDiv {
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-right: 50px solid #1a1a1a;
	border-bottom: 25px solid transparent;
	margin: 40px;
	margin-top: 140px;
	visibility: collapse;
	opacity: 0.0;
	
	&:hover {
	border-right: 50px solid #ddd;
		filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 1.0));
	}
}

#photosDiv {
	display: flex;
	flex-flow: row wrap;
	justify-content: start;
	align-items: flex-start;
	width: 40vw;
	background-color: rgba(255, 255, 255, 0.01);
	visibility: collapse;
	transition: visibility 0s 1s, opacity 1s linear;
	opacity: 0.0;
	margin-right: 130px;
	margin-top: 100px;
	margin-bottom: 100px;
	border: 1px solid #333;

	a {
		cursor: pointer;
		&:link, &:visited {
			color: inherit;
			text-decoration: none;
		}
		&:hover {
			color: #fff;
			filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.35));
		}
		&:active {
			color: inherit;
			text-decoration: none;
		}
		&::selection {
			color: none;
			background: none;
		}
		&::-moz-selection {
			color: none;
			background: none;
		}
	}
	
	&::selection {
		color: none;
		background: none;
	}
	&::-moz-selection {
		color: none;
		background: none;
	}
}

.thumbDiv {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10vw;
	height: 10vw;
}

#photosDiv img {
	max-width: 100px;
	max-height: 100px;

	cursor: pointer;
	&:link, &:visited {
		color: inherit;
		text-decoration: none;
	}
	&:hover {
		color: #fff;
		filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.35));
	}
	&:active {
		color: inherit;
		text-decoration: none;
	}
	&::selection {
		color: none;
		background: none;
	}
	&::-moz-selection {
		color: none;
		background: none;
	}
}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 5vh; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	opacity: 0.0;
}

/* Modal Content (Image) */
.modal-content {
	margin: auto;
	display: block;
	max-height: 90vh;
	filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 1.0));
}

