body::before
{
	background: #212E36;
    background-size: cover;
    background-position: center;
	content: "";
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	transition: none;
	width: 100vw;
	z-index: -1;
}
/* width */
::-webkit-scrollbar {
	width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey; 
	border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: #6f97af; 
	border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #25abff; 
  }
  