
#sidebar{
    position: fixed;
    top: 0px;
    left: -300px;
    height: 100%;
    width: 300px;
    background-color: white;
}
#sidebar.active{
    left: 0px;
}
#sidebar .links a{
    display: block;
    padding: 16px;
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* border: 1px solid blue; */
}
#sidebar #sidebar-toggle-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: grey;
    top: 10px;
    right: 0px;
}
#sidebar #sidebar-toggle-btn span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 5px;
    background-color: #111;
}
/* #sidebar #sidebar-toggle-btn span:nth-child(1){
    top: 10%;
}
#sidebar #sidebar-toggle-btn span:nth-child(3){
    top: 90%;
} */

#sidebar #sidebar-toggle-btn{
    font-size: 30px;
}

#sidebar .links a:nth-child(1){
    background-color: rgb(58, 56, 56);
    color: white;
    height: 70px;
}