html, body {
	margin: 0;
	padding: 0;
	background: none;
	scroll-behavior: smooth;
	//overflow: hidden;
}
body {
	//background: #ECEFF1;
}
html.disable-scroll {
    overflow: hidden !important;
}
*,h1,h2,h3,h4,h5,h6,a,span,p,ul,li {
	margin: 0;
	padding: 0;
}
a {
	cursor: pointer;
}
a:hover {
	opacity: 1;
}
a:active {
	opacity: 0.8;
}
#container {
	display: none;
	position: absolute;
	width: 100%;
	//height: 100%;
	//overflow: hidden;
	top: 0;
	left: 0;
}
#container.show {
	display: block;
}
#splash {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: none;
	background-size: cover;
	background-position: center;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1;
	background: #212121;
	opacity: 1;
	top: 0;
	left: 0;
}
#splash.hide {
	opacity: 0;
	display: none;
}
* {
	scrollbar-width: thin;
}
*::-webkit-scrollbar {
	width: 5px;
}
*::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.2);
}
*::-webkit-scrollbar-thumb:hover {
	background: rgba(0,0,0,0.5);
}
*::-webkit-scrollbar-thumb:active {
	background: rgba(0,0,0,0.3);
}