body{    background-color: #333333;    user-select: none;    margin: 0;}::-webkit-scrollbar-thumb {    background-color: rgba(100,100,100,0.7);    border-radius: 1vh;}@keyframes scrol {    from{        opacity: 0;    }    to{        opacity: 1;    }}::-webkit-scrollbar {    background-color: transparent;    animation: scrol 1s;    width: 1vw;}/*rgba(50,50,50,0.7); */