:root {
  --blue: #2980b9;
  --black: #333;
  --white: #fff;
  --light-color: #777;
  --light-bg: #eee;
  --box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

* {
  list-style: none;
  font-family: "Microsoft YaHei", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: var(--blue);
}

html::-webkit-scrollbar-thumb {
  background: var(--white);
  border-radius: 50px;
}

.box::-webkit-scrollbar{ 
  height: 10px;
  background: var(--light-bg);
  border-radius: 10px;
}

.box::-webkit-scrollbar-thumb {
  background: var(--light-color);
  border-radius: 10px;
}


