@keyframes upDown {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(8px); }
    }

    .scroll-bounce {
        animation: upDown 2s ease-in-out infinite;
    }
    html {
        scroll-behavior: smooth;
    }
    /* width */
    ::-webkit-scrollbar {
        width: 10px;
    }
    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #372aacce; 
        border-radius: 10px;
    }
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(55, 42, 172, 0.63); 
    }