/* Finally got Carb working */


@font-face {
	font-family: 'Circular';
	font-weight: 500;
	src: url("fonts/CircularStd-Medium.ttf");
}


@font-face {
	font-family: 'Circular';
	font-weight: 700;
	src: url("fonts/CircularStd-Bold.ttf");
}

@font-face {
	font-family: 'Circular';
	font-weight: 900;
	src: url("fonts/CircularStd-Black.ttf");
}

@font-face {
	font-family: 'Circular';
	font-weight: normal;
	src: url("fonts/CircularStd-Book.ttf");
}


html {
	background: #000;
}
body {
	background: black;
	color: white;
	background: #fbff00;
	color: #404100;
	font-size: 1.25rem;
	font-family: system-ui,-apple-system,BlinkMacSystem Font,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
	font-family: Inconsolata, system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
	font-family: Circular, system-ui, sans-serif;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	margin: 0;
	padding: 0;
}
::selection {
	background: rgba(64, 224, 208, 0.5);
	padding: 2px;
}
a {
	font-weight: 900;
	color: burlywood;
	color: #404100;
	text-decoration: none;
}
h1 {
	font-size: 3rem;
	margin: 2rem 0;
}
h2 {
	--: color yellow;
	margin-top: 3rem;
}
h1 , h2 , h3 , h4 , h5 , h6 {
	font-weight: 900;
	user-select: none;
	-webkit-user-select: none;
}
p {
	line-height: 2;
}
p span {
	border-radius: 3px;
}
code {
	line-height: initial;
}
span.accent {
	color: white;
	border-bottom: 2px solid yellow;
	color: #404100;
	border-bottom: 2px solid #d5d725;
}
.wrapper {
	max-width: 820px;
	padding: 0 1.5rem;
	margin: 0 auto;
}
.compare-code {
	display: flex;
}
.compare-code h4 {
	margin: 0;
	padding-bottom: .75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.code {
	flex: 1;
	margin: 0;
	padding: 1rem;
	position: relative;
	border: 1px solid burlywood;
	border-radius: .5rem;
	background: yellow;
	color: black;
	border: none;
	background: black;
	color: #fbff00;
}
.code:first-child {
	margin-right: 1rem;
}
.code:last-child {
	margin-left: 1rem;
}
.code .filename {
	position: absolute;
	bottom: 0;
	right: 0;
	transition: .2s color ease-in-out;
	padding: .7rem 1rem;
	font-size: .9rem;
	font-weight: bold;
	color: black;
	color: #fbff00;
	user-select: none;
	-webkit-user-select: none;
	text-align: center;
}
.code:hover .filename {
	color: black;
}
header {
	--: ;
	padding: 1.5rem 0;
	user-select: none;
	-webkit-user-select: none;
}
header .wrapper {
	display: flex;
	align-items: center;
}
.nav-tab {
	font-size: 1.5rem;
	vertical-align: middle;
}
.nav-tab img {
	margin-bottom: 3px;
	width: 35px;
	margin-top: 2px;
	margin-right: 8px;
	vertical-align: text-top;
}
.nav-link {
	margin-left: auto;
	font-size: 1rem;
}
footer {
	text-align: center;
	margin-top: 4rem;
	padding: 2.5rem 0;
	border-top: 1px dashed rgba(255, 255, 255, 0.25);
	user-select: none;
	-webkit-user-select: none;
	background: yellow;
	color: black;
	background: black;
	color: #fbff00;
}
footer a {
	color: #fbff00;
}
.pointer {
	cursor: pointer;
}
@media(max-width: 600px) {
	h1 {
		font-size: 2rem;
	}
	.compare-code {
		flex-direction: column;
	}
	.code {
		margin: 0 0 2rem !important;
	}
}
