<style>

:root {
	color-scheme: dark;
}
html {
	scrollbar-color: #363636 #121212;
	overflow-y: scroll;
}
body {
	justify-self: center;
	background-color: #121212;
	background-image: url(images/background-gradient.png); /* gradiant was 33a4ff and now 42a0ff */
	background-attachment: fixed;
	background-repeat: repeat-x;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	color: white;
	padding: 0px;
	margin: 0px;
}
.cards {
	display: grid;
	grid-template-columns: 10px 620px 10px;
	gap: none;
	/* grid-template-rows: 1fr 1fr 1fr; */
}
.card {
	background-image: url("images/djmorgan-layout-space-600px.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-color: black;
	padding-left: 10px;
	padding-right: 10px;
	width: 600px;
	height: auto;
	box-shadow: -5px 0px 10px rgba(0, 0, 0, 1), 5px 0px 10px rgba(0, 0, 0, 1);
	/* box-shadow: h-offset v-offset radius color */
}
.card-left-column {
	background-image: url(images/background-drop-shadow-left.png);
	background-color: transparent;
}
.card-right-column {
	background-image: url(images/background-drop-shadow-right.png);
	background-color: transparent;
}
.cbox { /* Content Box */
	padding-right:10px;
	padding-left:10px;
	text-align: left;
	height: auto;
	width: auto;
}
h1 { /* Header One */
	background-color: #121212;
	border-top: 1px solid #363636;
	border-left: 8px solid #42a0ff;
	border-bottom: 1px solid #42a0ff;
	font-size: 12pt;
	padding: 8px;
}
hr { /* Header Row with Blue Line */
	width: 98%;
	border: none; /* Removes default border */
	border-top: 1px solid #42a0ff; /* Creates a 1px solid line with color */
	margin-top: 15px; /* Adds some vertical spacing above */
	margin-bottom: 15px; /* Adds some vertical spacing below */
}
table {
	max-width: 600px;
	width: 100%;
	border-collapse: collapse;
	border: none;
}
td {
	padding: none;
}
.photo {
	border: 1px solid black;
	box-sizing: border-box;
	filter: drop-shadow(5px 5px 5px #000);
}
img {
	border: none;
}
.grayscale-image {
	filter: grayscale(100) brightness(2);
	transition: filter 0.5s ease;
}
.grayscale-image:hover {
	filter: brightness(50%) sepia(100%) saturate(100%) hue-rotate(192deg) saturate(10) brightness(1.25);
}
iframe {
	border: none;
	overflow: hidden; /* replaces scrolling */
	background: #121212; /* match your page's dark background */
	background-color: #121212;
	color-scheme: dark; /* try to get the backgrounds dark */
}

.nav-transition { transition: background-image 0.5s ease; }

.nav-home { background-image: url('images/button-nav-home.png'); width: 145px; height: 35px; }
.nav-home:hover { background-image: url('images/button-nav-home-hover.png'); width: 145px; height: 35px; }

.nav-bio { background-image: url('images/button-nav-bio.png'); width: 145px; height: 35px; }
.nav-bio:hover { background-image: url('images/button-nav-bio-hover.png'); width: 145px; height: 35px; }

.nav-mixes { background-image: url('images/button-nav-mixes.png'); width: 145px; height: 35px; }
.nav-mixes:hover { background-image: url('images/button-nav-mixes-hover.png'); width: 145px; height: 35px; }

.nav-contact { background-image: url('images/button-nav-contact.png'); width: 145px; height: 35px; }
.nav-contact:hover { background-image: url('images/button-nav-contact-hover.png'); width: 145px; height: 35px; }

a:link {color: #42a0ff; text-decoration: none;}
a:visited {color: #42a0ff; text-decoration: none;}
a:hover {color: #7bc4ff; text-decoration: underline;}

</style>