@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

html,body{
font-family: "Lora", serif;
  font-optical-sizing: auto;
}
/* Custom scrollbar */
.custom-scroll::-webkit-scrollbar {
  width: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: #e5e7eb; /* gray-200 */
}
.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #a50b81; /* gray-500 */
  border-radius: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #851176; /* gray-600 */
}
