	:root { /* my pink theme */
    	--text: #4f2f2f;
		--border: #ffaec9;
		--bg: #dce3e1;
		--inside: #ffd4e5;
		--highlight: #ff86ae;
}

	:root { /* my blue theme */
    	--text: rgb(0, 60, 101);
		--border: rgb(105, 210, 255);
		--bg: #dce3e1;
		--inside: rgb(155, 230, 253);
		--highlight: rgb(0, 122, 255);
	}

	:root { /* bf theme */
    	--text: #002865;
		--border: #69beff;
		--bg: #dce3e1;
		--inside: #9bd2fd;
		--highlight: #0066ff;
	}




* { 
	box-sizing: border-box;
}
body {
	padding: 10px;
	font-family: "Comic Neue";
	color: var(--text);
	/* page background pattern */
	background-color: var(--inside);
	opacity: 1;
	background-image: linear-gradient(0deg, var(--inside) 50%, var(--border) 50%);
	background-size: 18px 18px;
	/* page background pattern */

}


.container {
	max-width: 75rem;
	margin: 1vw auto 1vw auto;
	border: 10px solid var(--border);
	outline-offset: 4px;
	border-radius: 25px;
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	gap: 5px;

	/* container background pattern */
	background-color: var(--inside);
}
/* 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: 5px solid var(--border);
	border-radius: 5px;
	position: relative;
	background-image: url(clownimages/rc1.jpg);
}
header span {
	font-size: 30px;
	position: absolute;
	bottom: 0;
	left: 10px;
	margin: 10px;
	font-weight: bold;
	color: var(--text);
	

}


nav {
	border: 5px solid var(--border);
	border-radius: 5px;
	padding: 5px;
	background: var(--inside);
}
nav div {
	text-align: center;
	font-size: 1.25rem;
	margin: 5px 5px 10px 5px;
}
nav a {
	display: block;
	margin: 5px;
	background: var(--border);
	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: var(--highlight);
}

/* optional button styling like in the preview */

div.small > img {
	display: block;
	margin: 5px auto;
	border:5px solid var(--border);
	border-radius: 5px;
}


section {
	border: 5px solid var(--border);
	border-radius: 5px;
	background: var(--inside);
	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: bold;
	text-align: center;
	border-bottom: 5px solid var(--border);
	padding-bottom: 5px;
}
h2 { 
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
}
h3 { 
	font-size: 1.1rem;
}
h4 { 
	font-size: 1rem;
	color: var(--border);
	padding-left: 12px;
}

/* prevents overflow on smaller screens */
img { max-height: auto; max-width: 100%; }
pre { overflow-x: auto; }


a:hover, a:focus {
	font-style: italic;
}
a:visited {
	color: blue;
}

html {
    scrollbar-color: var(--text) #00000000;
}