
/* Width and height of the scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    
}

/* Track (background) of the scrollbar */
::-webkit-scrollbar-track {
    background: #8f8f8f; 
}

/* Handle (thumb) of the scrollbar */
::-webkit-scrollbar-thumb {
    background: #5c5c5c; 
    border-radius:2px;
}



body{
    visibility:hidden;
    background-color: transparent;
    font-family: 'Droid Sans', sans-serif;
    max-width:1920px;
    margin: 0 auto; 
    
}