body{
    font-family: 'Montserrat', sans-serif;
    background-color: #a88400;
}

.simply-back {
    background-image: url("/assets/img/background_5.jpg");
    filter: blur(8px);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: -1; 
}

/* Sidebar */
#sidebar-wrapper{
    z-index:10;
    position: fixed;
    width: 0;
    overflow-y:hidden;
    background: #198754;
    opacity:0.9;
    transition:all .5s;
}

/* Main Content */
#page-content-wrapper{
    position: absolute;
    padding: 15px;
    transition: all .5s;
}

#menu-toggle{
    transition:all .3s;
    font-size:2em;
}
/* Change the width of the sidebar to display it*/
#wrapper.menuDisplayed #sidebar-wrapper{
    width: 250px;
}

#wrapper.menuDisplayed #page-content-wrapper{
    padding-left: 265px;
}

/* Sidebar styling */
.sidebar-nav{
    list-style:none;
    transition:all .5s;
    text-align:center;
}

.sidebar-nav li{
    transition:all .3s;
    color:#ddd;
}

.sidebar-nav li:hover{
    background:#846bab;
}