html,
body,
ul,
li,
img,
p,
a {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

*, *::before, *::after {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  background: transparent;
}

::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #333;
  border: 2px solid transparent;
  background-clip: padding-box;
}

@font-face {
  font-family: 'IBM';
  src: url('./fonts/IBMPlexSans-Regular.otf');
  font-style: normal;
  /* font-weight: normal; */
}

@font-face {
  font-family: 'IBM';
  src: url('./fonts/IBMPlexSans-Medium.otf');
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'IBM';
  src: url('./fonts/IBMPlexSans-Bold.otf');
  font-style: normal;
  font-weight: bold;
}

body {
  font-family: 'IBM', 'Microsoft YaHei', 'PingFangSC-Regular';
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  background-color: #131313;
}

.text-center {
  text-align: center;
}
