@charset "UTF-8";
/* CSS Document */

:root /* light mode */ {
	--bg-color: #ffffff;
	--text: #000;
}

@media (prefers-color-scheme: dark) {
	:root {
			--bg-color: #0d0d0d;
			--text: #ffffff;
	}
}

/* Typography */

body {
	font: 13px/16px Arial, Geneva, sans-serif;
	letter-spacing: 0px;
	border-style: none;
}

#masterhead {
	font: 3em "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
}

.textBox {
	color: var(--text);
}


/* Layout and formating */

body {

	background-color: var(--bg-color);
}

img {
	margin: 0px 20px 20px 0px; /* increased from 7px, 2024 */
	padding-bottom: 0px;
	border-style: none;
	max-width: 500px;
	float: left;
}

div {
	margin: 0px 7px 7px 0px;
	border-style: none;
}



a img {
	border-style: none;
	}
	


#masterhead {
	
	text-align: left;
	position: fixed; 
	height: auto;
	width: auto;
	top: 20px; 
	left: 20px; 
	margin-top: 0px; 
	margin-left: 0px;
	float: none;
}

#release {
	bottom: 10px;
	left: 30px;
	position: fixed;
}

.textBox {
	padding: 0px;
	width: auto;
	height: auto;
	float: left;
}


.textBox a {
	color: var(--bg-color);
	text-decoration: none;
}

.textBox a:visited {
	color: var(--bg-color);
	text-decoration: none;
}

.textBox a:hover {
	color: var(--bg-color);
	text-decoration: none;
	border-bottom: 1px solid var(--bg-color);
}

a {
	color: var(--text);
	text-decoration: none;
}

a:visited {
	color: var(--text);
	text-decoration: none;
}
a:hover {
	color: var(--text);
	text-decoration: none;
	border-bottom: 1px solid var(--text);
}
a:active {
	color: var(--text);
	text-decoration: none;	
	border-bottom: 1px solid var(--text);
}
