/* Clean and minimal global transitions */
* {
  transition-property: color, background-color, border-color, space;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 250ms;
}

/* Chill aesthetic custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

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

.dark ::-webkit-scrollbar-thumb {
  background: #2e2e2e;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a3a3a3;
}

/* Dynamic blog scroll progress bar overrides */
#progress-bar {
  background: #1c1c1c;
}

.dark #progress-bar {
  background: #e5e5e5;
}
