body, html{
	background-color: #2f2f2f;
	overflow-x: hidden;
}

*{
	font-family: arial;
	color: white;
}

#logo{
	position: absolute;
	left: 50%;
	top: 35%;
	transform: translate(-50%, -50%);
}

::selection{
	color: white;
	background-color: #1c1c1c;
}

::-moz-selection{
	color: white;
	background-color: #1c1c1c;
}

::-webkit-scrollbar{
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-thumb{
	background: #2f2f2f;
	border: 0.2px solid #FE6F27;
	border-radius: 30px;
}
::-webkit-scrollbar-thumb:hover{
	background: #fe6f27;
}
::-webkit-scrollbar-track{
	background: #0F0F0F;
	border-radius: 0px;
	box-shadow: inset 0px 0px 0px 0px #F0F0F0;
}