:root {
	--colBg: rgb(40 44 53);
	--colFg: rgb(255 255 255);
	--colFgSh: rgb(0 0 0);
	--colLink: rgb(255 182 16);
	--border: 1px solid rgb(255 255 255 / 5%);
}

html,
body {
	background: var(--colBg);
	color: var(--colFg);
	font: 18px/1.2em "mr-eaves-modern", sans-serif;
	margin: 0;
	text-shadow: var(--colFgSh) 1px 1px 0;
}

a {
	color: var(--colLink);
	font-weight: bold;
	text-decoration: none;
}

	a:hover {
		text-decoration: underline;
	}
	
hr {
	border: 0;
	border-top: var(--border);
	margin: 20px auto;
	width: 75%;
}

.inner {
	margin: 0 auto;
	max-width: 800px;
	padding: 30px 20px;
}

.center {
	text-align: center;
}


[aria-hidden="true"] {
	opacity: 0;
	transition: .15s all;
	transform: scale(0);
	visibility: hidden;
}

[aria-hidden="true"] * {
	display: none;
}

[aria-hidden="false"] {
	opacity: 1;
	transition: .2s all;
	transform: scale(1);
	visibility: visible;
}


[aria-hidden="false"] * {
	display: block;
}

/* ******************* HEADER ******************* */


header>div {
	display: grid;
	grid-template-columns: auto max-content;
	margin: 0 auto;
	max-width: 1024px;
	padding: 25px 20px;
}

	h1 {
		font-size: 24px;
		font-weight: 800;
		letter-spacing: -0.05em;
		margin: 0 0 5px;
	}

	h2 {
		font-size: 12px;
		grid-area: h2;
		margin: 0;
	}


	h3, h2 { font-size: 18px; }
	
	nav ul {
		display: flex;
		gap: 20px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

/* ******************* WTF ******************* */

#wtf {
	background: rgb(0 0 0 / 50%);
	box-shadow: rgb(0 0 0) 0 0 20px inset;
}

		#awesomer {
			display: grid;
			gap: 15px;
			grid-template-columns: repeat(2, auto);
			padding: 20px;
		}

		#awesomer img {
			border-radius: 42px;
			height: 42px;
			width: 42px;
		}
		
		#awesomer p {
			margin: 0;
		}
		
/* ******************* MAIN ******************* */

main {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
}

main td:first-of-type {
	white-space: nowrap;
}

@media(max-width: 730px) {
	main {
		display: block;
	}
}

/* ******************* TABLE ******************* */

table {
	border-collapse: collapse;
	width: 100%;
}

table tr {
	border-bottom: var(--border);
}

table th,
table td {
	text-align: left;
	padding: 10px 5px;
	vertical-align: top;
}

/* ******************* LIQ LIC ******************* */

.llCompact td:first-of-type {
	white-space: nowrap;
}

/* ******************* SUBSCRIBER ******************* */

#subscriber {
	background: rgb(0 0 0 / 85%);
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
}

/* ******************* FOOTER ******************* */

input,
button {
	-moz-appearance: none;
	-webkit-appearance: none;
	border: 1px solid rgb(0 0 0);
	border-radius: 0;
	font: 18px/1.2em "mr-eaves-modern", sans-serif;
	padding: 5px;
}

button {
	background: var(--colLink);
	color: var(--colBg);
}

input {
	width: 250px;
}