/* Reset CSS
======================================== */
*,
*::after,
*::before{
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
html, body,
header, footer,
section, article, aside, menu, nav,
div, span,
h1, h2, h3, h4, h5, h6, hgroup,
p, ol, ul, li, a, strong, b, i, s, address, time, sub, sup, hr,
form, fieldset, label,
figure, figcaption,
iframe, embed, audio{
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
html{
	scrollbar-width: none;
	/* scroll-behavior: smooth; */
}
::selection{
	color: var(--color-bg);
	background-color: var(--color-txt);
}
::-webkit-scrollbar{
	display: none;
}
:focus,
:focus-visible{
	outline: none !important;
}
:focus::-ms-value{
	color: inherit;
	background-color: none;
}
::-moz-focus-inner{
	border: none !important;
}

/* Figures
======================================== */
svg{
	overflow: visible;
}

/* Links
======================================== */
a{
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}
a > *{
	pointer-events: none !important;
}