html {
    scroll-behavior: smooth;
}

#myBtn {
    display         : none;
    position        : fixed;
    bottom          : 20px;
    right           : 20px;
    z-index         : 99;
    font-size       : 18px;
    border          : none;
    outline         : none;
    background-color: #fb8c00;
    color           : #fff;
    cursor          : pointer;
    padding         : 10px;
    border-radius   : 15px;
}

#myBtn:hover {
    color: 6c757d;
}

.end-spacer {
    padding: 40px 0;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color     : #ebebeb;
    -webkit-border-radius: 10px;
    border-radius        : 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius        : 10px;
    background           : #aaa;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #6c757d;
    width     : 20px;
}