*{
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #56B4E2;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3fa4d4;
    transition: background 0.3s ease;
}

/* HORIZONTAL */
::-webkit-scrollbar:horizontal {
    width: 0px;
    height: 0px;
}