:root {
		--text: #888387;
		--border: #7f7f7f;
		--accent: #d8c7ce;
		--bg: #dce3e1;
		--gradientTop: white;
		--gradientBottom: rgb(240, 248, 255, .8);
	}
	header {
		background: url('***light mode banner image***');
	}
	
#likesinner::-webkit-scrollbar {
    width: 4px;
    height: 8px;
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-thumb {
    background: #f3f1f1;
    background-size: 100%;
    border: 1px solid #e1d1d5;
    border-radius: 8px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
    border: 1px solid #e1d1d5;
    border-radius: 8px;
}

@font-face {
  font-family: 'angelfont';
  src: url('/fonts/angel.woff2');
}
@font-face {
  font-family: 'gothic';
  src: url('/fonts/gothic16.woff2');
}

@font-face {
  font-family: 'cursv';
  src: url('/fonts/Spirit.woff2');
}
* { 
	box-sizing: border-box;
}
body {
	padding: 10px;
	font-family: 'MS PGothic', sans-serif;
	color: var(--text);
	font:angelfont;
	background-color: var(--gradientTop);
	background-image: url("/bg_pink.png");

	background-repeat: repeat;
	background-size: 50px 50px;
	background-position: 0 0, 0 0, 10px 18px, 10px 18px, 0 0, 10px 18px;
}


.container {
	max-width: 55rem;
	margin: 5vw auto 12px auto;
	border: 2px ridge #e4e0e3;
	outline: 3px solid var(--gradientTop);
	outline-offset: 4px;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;

	/* container background pattern */
	background-color: var(--gradientBottom);
	background-image: 
    radial-gradient(#ffffff 15.6%, transparent 25.6%),
    radial-gradient(#ffffff 15.6%, transparent 25.6%);
	background-position: 0px 0px, 20px 20px;
	background-size: 40px 40px;
	background-color: #fff7fb;
}

/* these control the column widths */

.small { 
		max-width:180px;
		flex:1 1 9%; 
		height:487px;
		overflow-y: hidden;}
.large { flex: 1 1 82%; }
.full { flex: 1 1 100%; 
		height:250px;}
.half { flex: none;
		max-width:510px;
		 height:487px;
		}

header {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 120px;
	border: 1.5px ridge var(--border);
	border-radius: 5px;
	position: relative;
}
header span {
	font-size: 2.5rem;
	position: absolute;
	bottom: 0;
	right: 10px;
	margin: 10px;
	font-weight: bold;
	text-shadow: 1px 1px var(--text),
		-1px 1px var(--text),
		1px -1px var(--accent),
		-1px -1px var(--accent);
	color: var(--gradientTop);
}


nav {
	border: 1.5px ridge var(--border);
	border-radius: 5px;
	padding: 5px;
	background-color: rgba(255, 255, 255, 0.238);
}
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-radius: 5px;
	padding: 2px 7px;
	text-decoration: none;
}
nav a:link, nav a:visited { 
	color: var(--text);
}
nav a:hover, nav a:focus {
	background: linear-gradient(to right,var(--bg), var(--gradientBottom), var(--gradientTop));
}

div.small > img {
	display: block;
	margin: 5px auto;
	border:1.5px ridge var(--border);
	border-radius: 5px;
}


section {
	border: 1.5px ridge var(--border);
	border-radius: 5px;
	padding: 5px;
	background-color: rgba(255, 255, 255, 0.238);
}


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;
}
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;
}

img { max-width: 100%; }
pre { overflow-x: auto; }
