html,
body {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;

	font-family: Plus, sans-serif;
}

h2 {
	font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

a {
	text-decoration: none;
	color: var(--theme);
	font-weight: bold;

	transition-duration: 100ms;
}

a:hover {
	color: var(--theme-hover);
}

a:active {
	color: var(--theme-active);
}

:root {
	--theme: #78ff84;
	--theme-hover: #63d46d;
	--theme-active: #4ca853;
}

@font-face {
	font-family: 'Plus';
	src: url('/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf') format('truetype-variations');
	font-weight: 1 999;
}