html {
  scrollbar-gutter: stable;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-east-asian: proportional-width;

  font-weight: normal;
  font-style: normal;
  font-display: swap;

  font-family: "KingHwaOldSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    "Songti SC",
    "STSong",
    "Times New Roman",
    serif;
}

a:link,
a:visited {
  color: rgb(240, 80, 55);
  text-decoration: none;
}

a:hover,
a:focus {
  color: rgb(247, 147, 131);
  text-decoration: none;
}

code,
pre,
kbd,
samp {
  font-family:
    "JetBrains Mono",
    "Fira Code",
    "Source Code Pro",
    "Courier New",
    monospace;

}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}
