:root{
    --web-background-color: white;
    --button-color: #352a10;
    --main-color: white;
    --search-bar-color: #a68c37;
    /* the brown #352a10 */
    /* the background #fcfcfc */
    /* the gold #a68c37 */
}
*{
    box-sizing: border-box;
}
.bg-pls-btn-color{
    background-color: var(--button-color);
    color: white;
}
.pls-btn-color{
    color: var(--button-color);
}
.pls-bg-color{
    background-color: var(--web-background-color);
}
.side-nav{
    width: 300px;
    height: 100vh;
    
    position: fixed;
}
.side-nav #side-bar{
    height: 100%;
}
.side-nav .logo{
    width: 150px;
    height: initial;
}
.user-image{
    width: 200px;
    height: 200px;

}
.user-profile{
    height: initial;
}
.nav-items .items{
    cursor: pointer;
}
.nav-items .items:hover{
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
