<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
	--defcolor: lime;
	--ntopfs: 40px;
	--nsidefs: 20px;
	--altcolor: blue;
	--barcolor: red;
	--belowbar: calc(100vh - (var(--ntopfs) + 14px));
}
body {
	margin: 0;
}
* {
	background-color: black;
	color: var(--defcolor);
}
.nbar{
	border-bottom: 2px solid var(--barcolor);
	padding-bottom: 5px;
	width: 100%;
}
.sidebar{
	float: right;
	border-left: 1px solid var(--defcolor);
	height: var(--belowbar); 
	width: 10%;
}
.navbot{
	text-decoration: none;
	font-size: var(--nbotfs);
}
.navtop{
	padding-right: 5px;
	padding-left: 5px;
	text-decoration: none;
	font-size: var(--ntopfs);
}
.navinfo{
	color: var(--barcolor);
	padding-right: 2.5%;
	float: right;
	font-size: var(--ntopfs)
}
.ns{
	border-top: 1px solid var(--barcolor);
	display: block;
	text-decoration: none;
	font-size: var(--nsidefs);
	text-align: center;
}
.nsinfo{
	border-top: 1px solid var(--barcolor);
	text-align: center;
	display: block;
	color: yellow;
	background-color: var(--altcolor);
	text-decoration: none;
	font-size: var(--nsidefs);
}
.superbox{
	overflow-x: hidden;
	overflow-y: hidden;
	height: var(--belowbar);
}
.mainbox{
	overflow: auto;
	padding: 5px;
	margin: 10px;
	height: 90%;
	border: 2px solid var(--altcolor);
}
.mc{
}
h1.mc{
	font-size: 60px;
	text-align: center;
	color: var(--barcolor);
	border-bottom: 2px solid var(--barcolor);
	border-radius: 100px;
}
h2.mc{
	font-size: 40px;
	text-align: center;
	border: 1px solid var(--defcolor);
	border-bottom: 0;
}
h3.mc{
	font-size: 30px;
	display: inline;
	text-align: left;
	border-top: 2px solid var(--altcolor);
	border-top-right-radius: 40px;
	border-right: 5px solid blue;
	border-bottom-right-radius: 70px;
	padding-right: 20px;
}
.inl{
	display: inline;
}
.intbox1 {
	text-decoration: none;
	border-bottom: 1px solid;
	border-radius: 5px;
}
.intbox1:hover {
	border-bottom: 0;
	border-top: 1px solid;
}
.intbox2{
	text-decoration: none;
	color: black;
	background-color: var(--defcolor);
}
.intbox2:hover{
	background-color: black;
	color: var(--defcolor);
}
.cnt{
	text-align: center;
}
.stk{
	position: sticky;
}
</pre></body></html>