:root {
	--text: white;
	--border: rgb(127, 127, 127);
	--bg: rgb(10, 10, 10,.8);
	--gradientBottom: rgb(16, 16, 16);
	--gradientTop: rgb(27, 27, 27);
	--cornerRadius: 5.25px;
	a:link { color: lightblue; }
}
		
header {
	background: url("");
}

* { 
	box-sizing: border-box;
}

body {
	padding: 10px;
	font-family: 'MS PGothic', sans-serif;
	color: var(--text);

	/* page background pattern */
	background-color: black;
	background-size: 20px 35px;
	background-position: 0 0, 0 0, 10px 18px, 10px 18px, 0 0, 10px 18px;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0.25;
  filter: blur(0.5px);
}


.container {
	max-width: 50rem;
	margin: 5vw auto 12px auto;
	border: 6px ridge var(--border);
	border-radius: var(--cornerRadius);
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;
	filter: blur(0.3px);
  opacity: 0.99;

	/* container background pattern */
	background-color: var(--gradientBottom);
	background-image: linear-gradient(var(--gradientTop),var(--gradientBottom));
}
/* 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;
	width: 100%;
	height: 100px; /* change banner height here*/
	border: 2px ridge var(--border);
	border-radius: var(--cornerRadius);
	position: relative;
}
header span {
	font-size: 2.5rem;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	margin: 10px;
	font-weight: bold;
	color: var(--text);
}


nav {
	border: 2px ridge var(--border);
	border-radius: var(--cornerRadius);
	padding: 5px;
	background: linear-gradient(var(--gradientTop),var(--gradientBottom));
}
nav div {
	text-align: center;
	font-size: 1.25rem;
	margin: 5px 5px 10px 5px;
}
nav a {
	display: block;
	margin: 5px;
	background: linear-gradient(var(--bg),var(--gradientBottom));
	border-radius: var(--cornerRadius);
	padding: 2px 7px;
	text-decoration: none;
}
nav a:link, nav a:visited { 
	color: var(--text);
}

/* optional button styling like in the preview */
div.small > img {
	display: block;
	margin: 5px auto;
	border:2px ridge var(--border);
	border-radius: var(--cornerRadius);
}


section {
	border: 2px ridge var(--border);
	border-radius: var(--cornerRadius);
	background: linear-gradient(var(--gradientTop),var(--gradientBottom));
	padding: 5px;
}


footer {
	text-align: center;
	margin-bottom: 5vw;
	font-size: 0.8rem;
	filter: blur(0.3px);
	opacity: 0.99;
}
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;
}
h2 { 
	font-size: 1.25rem;
	font-weight: normal;
	text-align: center;
}
h3 { 
	font-size: 1.1rem;
}
h4 { 
	font-size: 1rem;
	padding-left: 12px;
}

/* prevents overflow on smaller screens */
img { max-width: 100%; }
pre { overflow-x: auto; }


a:hover, a:focus {
	font-style: italic;
}