/* ========== RESET CSS ========== */
* {
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	cursor:default;
	font-family:"Inter";
	text-decoration:none;
}
*:focus {
    outline:none;
}
svg, svg * {
	cursor: inherit;
}
html {
	scroll-behavior: smooth;
}
body {
	width:100vw;
	height:100vh;
    height:100dvh;
	position:relative;
	display:flex;
	flex-direction:column;
	touch-action: pan-x pan-y;
    background:#FFF;
}