@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 13px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 20px 20px transparent;
    border: solid 3px transparent;
}

::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 20px 20px #d3d3d3;
    border: solid 3px transparent;
    border-radius: 100px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    box-shadow: inset 0 0 20px 20px rgba(0, 0, 0, 0.638);
}