:-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

:root {
    --pink: rgb(209, 152, 215);
    --grey: rgb(100, 100, 100);
    --dark-grey: rgb(24, 24, 24);
    --darker-grey: rgb(18, 18, 18);
}

@-moz-document url-prefix() {
    html {
        scrollbar-width: none;
    }
}

body {
    background-color: var(--dark-grey);
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

#experienceTab.nav-pills .nav-link.active {
    color: white !important;
    background-color: rgba(50, 50, 50, 50);
    border-radius: 0px;
    border-left: 2px solid var(--pink);
}

#experienceTab.nav-pills .nav-link {
    color: var(--grey) !important;
}