/*-----LOADED FIRST-----*/
@import url('https://fonts.googleapis.com/css?family=Abel|Arvo|Quicksand|Roboto|Roboto+Mono');
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
	display: none;
}
a, a:visited, a:hover {
	text-decoration:none;
}
a:hover {
}
html, body {
	font-family: 'Roboto', sans-serif;
	font-family: 'Quicksand', sans-serif;	
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	overscroll-behavior: none;
	overscroll-behavior-y: none;
	scroll-behavior: smooth;
	overflow-x: hidden;	
	background-color: rgb(0,0,0);
}
ul.no-bullets {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}
ul.inline {
	margin-left:24px;
}