/* start dark mode styling 
	@media (prefers-color-scheme: dark) {
		:root {
			--text: white;
			--border: #5a7678;
			--accent: #74C365;
			--bg: rgb(0,60,60,.8);
			--gradientBottom: rgb(0, 50, 60);
			--gradientTop: darkslategrey;
			a:link { color: lightblue; }
		}
		header {
			background: url('***dark mode banner image***');
		}
	}
end dark mode styling */

/* fonts */
@font-face {
	font-family: "tamzen"; 
	src: url("fonts/Tamzen10x20b.ttf") format("truetype");
}
@font-face {
	font-family: "arcade"; 
	src: url("fonts/arcade.ttf") format("truetype");
}
@font-face {
	font-family: "gothic-byte"; 
	src: url("fonts/GothicByte.ttf") format("truetype");
}

* { 
	box-sizing: border-box;
}
body {
	padding: 10px;
	font-family: tamzen, monospace;
	color: #a4ca92;

	/* page background pattern */
	background-color: black;
}


.container {
	max-width: 55rem;
	margin: 5vw auto 12px auto;
	border: 2px solid #a4ca92;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;

	/* container background pattern */
	background-color: var(--gradientBottom);
	background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, var(--gradientBottom) 9px ), repeating-linear-gradient( var(--bg), var(--bg));
}
/* these control the column widths */
.small { flex: 1 1 9%; }
.large { flex: 1 1 82%; }
.full { flex: 1 1 100%; }
.half { flex: 1 1 49%; }


header {
	background-size: cover;
	background-position: center;
	background-color: #a4ca92;
	width: 100%;
	height: 75px; /* change banner height here*/
	border: 2px solid #a4ca92;
	position: relative;
}
header span {
	font-size: 2rem;
	font-family: "gothic-byte", monospace;
	position: absolute;
	bottom: 0;
	font-weight: bold;
	color: black;
	text-shadow: 1px 1px rebeccapurple;
}

/* optional button styling like in the preview */
div.small > img {
	display: block;
	margin: 5px auto;
	border-radius: 5px;
}


section {
	border-radius: 5px;
	background: linear-gradient(var(--gradientTop),var(--gradientBottom));
	padding: 5px;
}


footer {
	text-align: center;
	margin-bottom: 5vw;
	font-size: 0.8rem;
}
footer a { 
	text-decoration: none;
}


h1, h2, h3, h4, h5, h6, p  { 
	margin: 5px;
	line-height: 1.2;
}
h1 { 
	font-size: 1.4rem;
	letter-spacing: 2px;
	font-weight: normal;
	text-align: center;
	border-bottom: 2px ridge var(--border);
	padding-bottom: 5px;
	color: #a4ca92;
}
h2 { 
	font-size: 1.25rem;
	font-weight: normal;
	text-align: center;
	color: #a4ca92;
}
h3 { 
	font-size: 1.1rem;
	color: #a4ca92;
}
h4 { 
	font-size: 1rem;
	color: rebeccapurple;
	padding-left: 12px;
}

/* prevents overflow on smaller screens */
img { max-width: 100%; }
pre { overflow-x: auto; }


a:hover, a:focus {
	font-style: italic;
}
a:visited {
	color: rebeccapurple;
}






