html {
	background-color: unset;
}

main {
	max-width: 800px;
	margin: auto;
}

body {
	margin: auto;
	box-sizing: border-box;
	color: white;
	/* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; */
}

/* Typography */
/* 
Light 300
Regular 400
Regular 400 italic
Bold 700
Bold 700 italic */


.light {
	font-weight: 100;
	font-style: normal;
	font-family: 'Poppins', sans-serif;
}

.reg, body, p {
	font-weight: 400;
	font-style: normal;
	font-family: 'Poppins', sans-serif;
}

.italic {
	font-family: 'Poppins', sans-serif;
	font-style: italic;
}

.bold, h1, h2 {
	font-weight: 800;
	font-family: 'Poppins', sans-serif;
}

input[type="search"] {
	-webkit-appearance: none;
}

/* width */
::-webkit-scrollbar {
	width: 5px;
	height: 5px
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	background: #222831; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: #00838a; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #00adb5; 
  }

