* {
	box-sizing: border-box;
	--ember: #d51;
	--flame: #f50;
	--forest: #082;
	--gold: #fd0;
	--gray: #666;
	--silver: #888;
	--indigo: #50f;
	--lime: #4f2;
	--olive: #6a2;
	--red: #c20;
	--teal: #09c;
	--white: #fff;
	--rainbow: linear-gradient(to left, #90c, #52f, #27e, #0a7, #1d0, #ff0, #f70, #e02);
	--link: linear-gradient(to right, #f90, #fe7, #ffd, #fd3);
	--fire: linear-gradient(to left, #c10, #fd0);
}

span.rainbow {
	background-image: var(--rainbow);
	-webkit-background-clip: text;
	color: transparent;
	font-weight: bold;
}
span.fire {
	background-image: var(--fire);
	-webkit-background-clip: text;
	color: transparent;
	font-weight: bold;
}

body {
	font-family: sans-serif;
	font-size: 16px;
	color: #ddd;
	background-color: #000;
}
table {
	background-color: #000;
	border-color: #777;
}

h1 {
	color: var(--white);
}
h2 {
	color: var(--white);
}
h3 {
	font-size: 17px;
	color: var(--white);
}
h4 {
	color: var(--white);
}

hr {
	color: #444;
}

table.ul {
	background-color: #000;
	border-collapse: collapse;
	border-style: hidden;
}
table.classic {
	border-color: #f0f;
	border: 2px solid #444;
}

tr.head {
	font-weight: bold;
	color: #fff;
}

p.header {
	font-size: 8px;
	color: #aaa;
}

a {
	background-image: var(--link);
	-webkit-background-clip: text;
	color: transparent;
	text-decoration: none;
	font-weight: bold;
}
a:hover {
	color: #000;
	background-image: var(--link);
	-webkit-background-clip: border-box;
	text-decoration: underline;
	font-weight: bold;
}
a:active {
	color: #c10;
	background-image: var(--link);
	-webkit-background-clip: border-box;
	text-decoration: underline;
	font-weight: bold;
}

a.imprint {
	color: #aaa;
	background: none;
	text-decoration: none;
	font-weight: normal;
}
a:hover.imprint {
	color: #fff;
	background: none;
	text-decoration: underline;
	font-weight: normal;
}
a:active.imprint {
	color: #fff;
	background: none;
	text-decoration: underline;
	font-weight: normal;
}

::selection {
	color: #caf;
	background-color: #305;
}

.mono {
	font-family: monospace;
	color: var(--white);
}
.cmd {
	font-family: monospace;
	color: var(--flame);
}
.subscr {
	color: var(--silver);
	font-size: 14px;
}

div.flex {
	display: flex;
	width: 100%;
	vertical-align: middle;
}
div.h1 {
	font-size: 32px;
	flex: 99;
	border: 0px;
	color: #fff;
	background-color: #000;
	font-weight: bold;
	padding-top: 12px;
	padding-bottom: 12px;
}
div.subscr {
	color: var(--gray);
	flex: 1;
	padding-top: 22px;
	border: 0px;
}
div.right {
	text-align: right;
	padding-top: 22px;
	flex: 20;
	border: 0px;
}

.left {
	text-align: left;
}
