@font-face {
	font-family: "Lunahook";
	src:
		local("Century Gothic"),
		url("/centurygothic.ttf") format("truetype")
}

@font-face {
	font-family: "Roboto";
	src:
		local("Roboto"),
		local("Roboto Regular"),
		url("/Roboto-Regular.ttf") format("truetype")
}

html,
body {
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0;
	overflow: auto;
	background-color: #181a1b;
}


* {
	font-family: Roboto, Arial, 'Segoe UI', 'Helvetica Neue', sans-serif;
	outline: none;
}

span {
	color: #FFF;
}

#header {
	/* god bless your soul https://stackoverflow.com/a/22211990 */
	position: relative;
	width: 100%;
	background: no-repeat fixed;
	background-color: #c11ae2;
	background-image: url("assets/header.jpg");
	background-size: contain;
	background-position: right top;
	height: 0;
	padding-top: 15%;
	overflow: hidden;
}

#logo {
	position: absolute;
	font-size: 24px;
	font-family: Lunahook, Roboto, Arial, 'Segoe UI', 'Helvetica Neue', sans-serif;
	text-decoration: none;
	color: #27F;
}

#page {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100%;
}

#left-bar {
	min-width: 350px;
	height: 100%;
}

#listing {
	display: flex;
	flex-direction: column;
}

.listing-page-director {
	color: #EEE;
	padding: 16px;
	text-align: center;
	transition: background-color .5s;
}

.listing-page-director:hover {
	background-color: #ffffff2a;
}

#listing-header {
	color: #EEE;
	font-size: 18pt;
	text-align: center;
	padding: 16px;
}

#content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 32px;
	padding-right: 56px;
}

#page-title {
	font-size: 42px;
	margin-bottom: 12px;
}

#page-text {
	display: flex;
	flex-direction: column;
	gap: 11px;
	font-size: 18px;
	color: #FFF;
	line-height: 120%;
}

#page-text a {
	color: #2D6BF5;
}

#page-text a:visited {
	color: #55F;
}

#page-text .picture-frame {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 20px;
}

code {
	font-family: 'JetBrains Mono', 'Consolas', 'Fira Code', 'Courier New', Courier, 'Lucida Console', monospace;
	background-color: #53535373;
	border-radius: 5px;
	padding: 0px 3px;
	white-space: nowrap;
}

#page-text lunablog-paragraph {
	text-align: justify;
}

#page-text .list {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

#page-text .picture-frame>span {
	margin-top: 4px;
	color: #BBB;
	border-bottom: solid 1px #BBB;
}

#page-text .picture-frame>span code {
	color: #EEE;
}

#page-text a.nowrap {
	white-space: nowrap;
}

#page-text span.highlight-important {
	color: #4bff81;
}

#page-text span.highlight-solution {
	color: #ff57f7;
}

#page-text span.highlight-light-red {
	color: #ff5959;
}

#footer {
	display: block;
	min-height: 400px;
}

#ultra-tldr {
	display: flex;
	flex-direction: column;
	border: solid 2px #FFF;
	border-radius: 16px;
	margin-bottom: 16px;
	padding: 6px;
}

#ultra-tldr-title {
	display: flex;
	flex-direction: row;
	user-select: none;
}

#ultra-tldr-indicator {
	width: 20px;
	height: 20px;
	transform: rotate(90deg);
}

#ultra-tldr[extended='catgirl'] #ultra-tldr-indicator {
	transform: rotate(180deg);
}

#ultra-tldr-content {
	display: none;
}

#ultra-tldr[extended='catgirl']>#ultra-tldr-content {
	display: block;
	margin-top: 4px;
}