/* Normalize to just ensure consistent behavious acrous browser */

*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	line-height: var(--leading-normal);
	scrollbar-width: thin;
  	scrollbar-color: rgb(var(--accent-color)) transparent;
	
}
body {
	background: rgb(var(--background-color));
	color: rgb(var(--foreground-color));
	font-family: var(--font-sans);
	overflow-x: hidden;
}
body.is-scroll-locked {
	overflow: hidden;
}
img {
	display: block;
	max-width: 100%;
	user-select: none;
	border: 0;
}
ul, ol {
	list-style: none;
}
