*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
	font-size: 3vh;
}

body {
	font-family: 'Roboto', sans-serif;
	font-weight: normal;
	background-color: rgb(34, 34, 34);
}

a{
	text-decoration: none;
	color: inherit;
}

::-webkit-scrollbar{
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #202020;
}

::-webkit-scrollbar-thumb {
  background: #5a5a5a
}

.scrollbar {
  scrollbar-width: thin;
	scrollbar-color: #5a5a5a #202020;
}

@media screen and (orientation:landscape) {
	html, body {
		font-size: 2vw;
	}
}