body{
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
}


body::-webkit-scrollbar {
    color: black;
    height: 7px;
    width: 6px;
    padding: 0px 3px;
}

body::-webkit-scrollbar-track {
    background: transparent; /* Track color */
    border-radius: 4px; /* Rounded track edges */
}

body::-webkit-scrollbar-thumb {
    background: #bbb; /* Thumb color */
    border-radius: 4px; /* Rounded thumb edges */
}

body::-webkit-scrollbar-thumb:hover {
    background: white; /* Thumb color on hover */
}