@font-face {
  font-family: 'YourVariableFont';
  src: url('/static/font/zebba-2.otf') format('opentype');
}
@font-face {
font-family: 'roboto';
src: url('/static/font/RobotoMono-VariableFont_wght.ttf') format('opentype');
}

body {
  cursor: url('/static/cur11.png'), auto;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'YourVariableFont', sans-serif;
  /* overflow: hidden; */
  scroll-behavior: smooth;
}
::selection {
  background-color: transparent; /* 取消原有的背景色 */
  color: #33ff00; /* 修改选中文本的颜色为绿色 */
  transition:all 0.5s ease-in-out;
  font-variation-settings: "RONG" 1000, "CHON" 0; 
}

*:hover {
  cursor: url('/static/cur11.png'), auto;
}

*:active {
  cursor: url('/static/cur22.png'), auto;
}
a {
  cursor: url('/static/cur11.png'), auto; 
}
a:hover{
  cursor: url('/static/cur11.png'), auto; 
}
a:active {
  cursor: url('/static/cur22.png'), auto; 
}