body{
	margin: 0;
	padding: 0;
}

html,body{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

body{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	font-family: $font_family;
	-webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	padding: 0;
	font-weight: normal;
}

a{
	text-decoration: none;
}

*{
	box-sizing: border-box;
}

::-webkit-scrollbar {
	width: 3px;
	height: 3px;
}
::-webkit-scrollbar-track {
	background-color: transparent;
}
::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,.3);
	border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
	background-color: rgba(0,0,0,.4);
}
::-webkit-scrollbar-thumb:active{
	background-color: rgba(0,0,0,.5);
}
