/* theme */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: var(--magenta);
  border-radius: 6px;
  border: 2px solid var(--cream);
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--magenta) var(--cream);
}
h1, h2, h3, h4, h5, h6, p, span, li, a, blockquote, pre, code {
  cursor: url('/assets/css/theme/magenta/cursor-text-16.svg'), text;
}
body, div {
  cursor: url('/assets/css/theme/magenta/cursor-pointer-16.svg'), auto;
}
a, button, .img-menu, .btn {
  cursor: url('/assets/css/theme/magenta/cursor-hand-16.svg'), pointer;
}
