/* COPY PASTET WITH ADJUSTED COLORS*/

/* scrollbar color change */
html {
  scrollbar-color: rgba(152, 12, 12, 0.8) rgba(255, 255, 255, 0.15); /* Firefox */
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.15);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(152, 12, 12, 0.8);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(152, 12, 12, 1);
}

body {
  overflow: unset;
}
