@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");
/*   font-family: "Poppins", sans-serif; */
:root {
  --primary-color: #000000;
  --secondary-color: #969494;
  --Slider-color: #e9d700;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track{
  background-color: #3d3d3dd4;
}
::-webkit-scrollbar-thumb{
  background-color: #e9d700;
  border-radius: 10px;
  margin: 2px;
  
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  transition: 0.3s all;
}
body{
  background-color: var(--primary-color);
}
a {
  text-decoration: none;
  color:#fff;
}
li{
  list-style: none;
}

