html,body {
    position: relative;
    height: 100%;
}

body {
    background: #eee;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}


/* Scroll bar stylings */
::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #ede9e8; 
    opacity: 0.9;
}

::-webkit-scrollbar-thumb {
    background: #66b77d;
    border-radius:50px;
    opacity: 0.5;
}