img {
    -webkit-user-drag: none;
}

::-webkit-scrollbar{
    width: 15px;
}

::-webkit-scrollbar-track{
    background: #252525;
}
::-webkit-scrollbar-thumb {
    background: #2f3033;
    border-radius: 10px;
}
/*scroll bar /\   */

.navbarBG {
    background-color: #161616;
    border-radius: 20px;
}

.box {
    background-color: #fff;
    width: 100%;
    border-radius: 40px;
}

.download {
    text-decoration: none;
    color: #fff;
    text-align: center;
    background-color: #161616;
    width: 200px;
    height: 40px;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-size: 20px;
    transition: 0.5s;
    &:hover {
        transition: 0.5s;
        background-color: #454545;
    }
}