/* Custom Scrollbar */
html::-webkit-scrollbar {
  width: 0.5rem;
  background-color: #FFF4E6;
}

html::-webkit-scrollbar-thumb {
  background-color: #FF671F ;
  border-radius: 5rem;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #DA1884; 
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
