body {
	font-family: var(--font);
	font-size: var(--font-size);
	color: var(--font-color);
	 background: var(--background);
	line-height: var(--line-height);
	min-height: -webkit-fill-available;
	scroll-behavior: smooth;
	line-height: var(--line-height);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
}
html {
	overflow-x: hidden;
	overflow-y: scroll;
}
/* width */
::-webkit-scrollbar {
	width: 6px;
	height:6px;
}
/* Track */
::-webkit-scrollbar-track {
	background: var(--background);
}
/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--color);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--color-dark);
}