:root{
    --main-color:rgb(255, 255, 255);
    --sidebar-color:rgb(129, 180, 174);
    --text-color:rgb(0, 0, 0);
    --primary-color:rgb(0, 179, 255);
}
body{
    height: 100vh;
    background-color: var(--main-color);
}
.contain{
    height: 100vh;
}
.sidebar {
    display: flex;
    justify-content: start;
    width: 250px;
    background-color: var(--sidebar-color);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 95;
    overflow-y: scroll;
    
}
.sidebar li{
    height: 50px;
    margin-top: 10px;
    list-style:none;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    width: 100%;
}
.sidebar li span,i{
    color: #000;
    padding: 0;
    margin: 0;
}
.menu-bar{
    margin-top: 4rem;
    margin-left: -2rem;
}