/* start light mode styling */
	:root {
		--text: white;
			--border: #914367;
			--accent: #914367;
			--bg: #BAA5B7;
			--opacity: 0.7;
			--gradientBottom: #BAA5B7;
			--gradientTop: #BAA5B7;
			a:link { color: #FFE3F5; }
	}
	header {
		background: url('https://nikkadee.neocities.org/patternvomit16.png');
	}
/* end light mode styling */


* { 
	box-sizing: border-box;
}
body {
	padding: 10px;
	font-family: 'Garamond', 'Times New Roman', serif;
	color: var(--text);

	/* page background pattern */
	background-color: #20674f;
  background-image: url('https://nikkadee.neocities.org/patternvomit16.png');
  background-repeat: repeat;
}


.container {
	max-width: 55rem;
	margin: 5vw auto 12px auto;
	border: 6px dotted var(--border);
	border-radius: 3px;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;

	/* container background pattern */
  background-color: #914367;
  opacity: 0.7;
  background-image: radial-gradient(#BAA5B7 0.45px, #b78aab 0.45px);
  background-size: 9px 9px;
}
/* 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: 120px; /* change banner height here*/

	border-radius: 3px;
	position: relative;
}
header span {
	font-size: 2.5rem;
	position: absolute;
	bottom: 0;
	right: 10px;
	margin: 10px;
	font-weight: bold;
	color: white;
}


nav {
	border: none;
	border-radius: 3px;
	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(to right,var(--bg),var(--gradientBottom));
	border: none;
	border-radius: 3px;
	padding: 2px 7px;
	color: var(--link);
		text-decoration-style: wavy;
		text-underline-offset: 2px;
		text-decoration-thickness: 2px;
		text-decoration-color: var(--border);
	
}
nav a:link, nav a:visited { 
	color: var(--text);
		text-decoration-style: wavy;
		text-underline-offset: 2px;
		text-decoration-thickness: 1px;
		text-decoration-color: var(--border);
}
nav a:hover, nav a:focus {
	background: linear-gradient(to right,var(--bg), var(--gradientBottom), var(--gradientTop));
	color: var(--link);
		text-decoration-style: wavy;
		text-decoration-thickness: 1px;
}

/* optional button styling like in the preview */
div.small > img {
	display: block;
	margin: 5px auto;
	border:none;
	border-radius: 3px;
}


section {
	border: none;
	border-radius: 3px;
	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 dotted 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;
	color: var(--accent);
	padding-left: 12px;
}

/* prevents overflow on smaller screens */
img { max-width: 100%; }
pre { overflow-x: auto; }


	a:link { 
		color: var(--link);
		text-decoration-style: wavy;
		text-underline-offset: 2px;
		text-decoration-thickness: 2px;
		text-decoration-color: var(--border);
	}
	a:visited { 
		color: var(--text);
		text-decoration-color: var(--border);
	}
	a:hover, a:focus { 
		color: var(--link);
		text-decoration-style: wavy;
		text-decoration-thickness: 1px;
	}