@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
/* Universal marks */
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior:smooth;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 50%, rgba(0,0,0,1) 100%);
}

body {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}
a, ul, li {
  list-style-type: none;
  list-style: none;
  text-decoration: none;
  color: #fff;
}
::-webkit-scrollbar-track{
  border-color: transparent;
  background-color: white;
}

::-webkit-scrollbar {
	width: 10px;
	background-color: #c2c2c2;
}

::-webkit-scrollbar-thumb {
	background-color: #c2c1c1b5;
	border-radius: 4px;
}