/* start dark mode styling */
	@media (prefers-color-scheme: dark) {
		:root {
			--text: white;
			--border: #ff00d5;
			--accent: #74C365;
			--bg: rgb(0,60,60,.8);
			--gradientBottom: rgb(0, 50, 60);
			--gradientTop: darkslategrey;
			a:link { color: lightblue; }
		}
		header {
			background-image: url("https://64.media.tumblr.com/69d3933d205342142f2766945ae97349/cd65f79b0cd1db8b-41/s400x600/ac09e23bfac0d4fc98c89440b02df6b20cb096c0.gif");
			  background-repeat: repeat;
        background-size: 10px;
		}
	}
/* end dark mode styling */


* { 
	box-sizing: border-box;
}
body {
	padding: 10px;
	font-family: 'Verdana', sans-serif;
	color: Magenta;

	/* page background pattern */
	background-color: Black;
}


.container {
	max-width: 55rem;
	margin: 5vw auto 12px auto;
	border: 1px solid #ff00d5;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;
	box-shadow:0px 0px 25px 3px rgba(255,0,213,0.73);

	/* container background pattern */
	background: #7300ff;
  background-color: Black;
}
/* 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: 300px;
	background-position: center;
	width: 100%;
	height: 120px; /* change banner height here*/
	border: 1px solid #ff00d5;
	border-radius: 5px;
	position: relative;
}
header span {
	font-size: 2rem;
	position: absolute;
	bottom: 0;
	right: 10px;
	margin: 10px;
	text-shadow: 1px 1px MediumVioletRed,
		-1px 1px MediumVioletRed,
		1px -1px Black,
		-1px -1px MediumVioletRed;
	color: Magenta
}


nav {
	border: 1px solid #ff00d5;
	border-radius: 5px;
	padding: 5px;
	background: #ff009d;
  background-color: Black;
  font-size: .85rem;
}
nav div {
	text-align: center;
	font-size: 1.25rem;
	margin: 5px 5px 10px 5px;
}
nav a {
	display: block;
	margin: 5px;
	background: #ff009d;
  background-color: Black;
	border-radius: 5px;
	padding: 2px 7px;
	text-decoration: none;
}
nav a:link, nav a:visited { 
	color: var(--text);
}
nav a:hover, nav a:focus {
	background: #ff009d;
  background-color: Black;
}

/* optional button styling like in the preview */
div.small > img {
	display: block;
	margin: 5px auto;
	border: 1px solid #ff00d5;
	border-radius: 5px;
}


section {
	border: 1px solid #ff00d5;
	border-radius: 5px;
	background: #ff009d;
  background-color: Black;
	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: 1px solid #ff00d5;
	padding-bottom: 5px;
}
h2 { 
	font-size: .85rem;
	font-weight: normal;
	text-align: center;
}
h3 { 
	font-size: 1.1rem;
}
h4 { 
	font-size: .85rem;
	color: var(--accent);
	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: var(--accent);
}