:root{
	--white: #F8F4F5;
	--white2: #FDFBFC;
	--black: #6F6D69;
	--grey: #ada59f;
	--shadow-rgb: 210, 191, 177;
	--paper-shadow: #D2BFB1;
	--paper-shadow-rgb: 210, 191, 177;
	--body-font: "rainyhearts", "JF Dot Izumi Gothic 16", sans-serif;
	--heading-font: "LOVELY HEART", cursive;
}

body{
	background-color: var(--white);
	color: var(--black);
	font-size: 1.95svw;
	font-family: var(--body-font);
}

h1, h2, h3{
	font-family: var(--heading-font);
	margin-top: 1em;
}

a, u{
	text-decoration-style: dotted;
}

p, ol, ul, blockquote, table{
	line-height: 1.6;
}

figcaption{
	line-height: 1.3;
}

dfn{
	font-style: normal;
	text-decoration: underline;
		text-decoration-style: dotted;
}

.spoiler{
	background-color: var(--black);
	padding: 0.05em;
}

.jp-font{
	font-size: 85%;
	letter-spacing: -0.066em;
}

/* creates a scrolling container fox text */

.hugme{
	overflow-y: auto;
	max-height: 100%;
	padding: 0 1em;
	box-sizing: border-box;
}

.centered{
	text-align: center;
	align-self: center;
	margin-left: auto;
	margin-right: auto;
	display: block;
	text-indent: 0;
}

.flippy{
	transform: scaleX(-1);
}

.divider{
	max-width: 66%;
	display: block;
	margin: 1em auto;
	filter: drop-shadow(0.5svh 0.5svh 0.2svh rgba(var(--paper-shadow-rgb),0.5));
}

/* style-my-tootltips plugin, tooltip styling */

#s-m-t-tooltip{
	/* basic */
	max-width: 300px;
	z-index:100;
	margin:24px 14px 7px 12px;
	/* style and design */
	padding:8px;
	background:#222; /* fallback if rgba not supported */
	background:rgba(0,0,0,0.8);
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	-moz-box-shadow:2px 2px 0 rgba(0,0,0,0.15),-1px -1px 0 rgba(255,255,255,0.3);
	-webkit-box-shadow:2px 2px 0 rgba(0,0,0,0.15),-1px -1px 0 rgba(255,255,255,0.3);
	box-shadow:2px 2px 0 rgba(0,0,0,0.15),-1px -1px 0 rgba(255,255,255,0.3);
	/* font */
	font-family: var(--body-font);
	font-size:0.75em;
	line-height:16px;
	color:#fff;
}