:root {
	color: white;
	--bg-color: #09161e;
	--highlight: #84cc16;
	--primary: #1b8d1b;
	--secondary: #22c55e;
	--tertiary: #285238;
	--tertiary-bg: rgb(from var(--tertiary) r g b / 0.2);
	--tertiary-hov: rgb(from var(--tertiary) r g b / 0.5);
	--gradient-rot: 135deg;
	--gradient: linear-gradient(var(--gradient-rot), var(--highlight), var(--secondary));
	--nav-height: 4rem;
	--footer-height: 4rem;
	--search-bar-color: rgb(255, 255, 255, 0.6);

	@media (max-width: 768px) {
		--nav-height: 8rem;
	}
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html, body {
	background: var(--bg-color);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	width: 100%;
	min-height: 100%;
	position: relative;
}

a, input, button, select {
	color: white;
}

a {
	text-decoration: none;
}

h1 { font-size: clamp(2.0rem, 8vw, 3.5rem) }
h2 { font-size: clamp(1.75rem, 6vw, 2.5rem) }
h3 { font-size: clamp(1.1rem, 4vw, 1.5rem) }
h4 { font-size: clamp(1rem, 3vw, 1.25rem) }
p { --max-font-size: 1rem; }
b { font-weight: bold; }

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb {
	background: rgba(132, 204, 22, 0.4);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(132, 204, 22, 0.6);
}