/*------- SCROLLBAR -------*/
/* Works on Firefox */
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;

    scrollbar-width: thin;
    scrollbar-color: green transparent;
}
    
    /* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(44, 119, 15, 0.753);
    border-radius: 20px;
    border: 3px solid transparent;
}