.sidebar{
    position:fixed;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 1000;
    background-color: rgba(23, 23, 23, 0.726);
    backdrop-filter: blur(5px);
    display: none;
    padding-top: 20px;
}
.sidebar ul{
    width: 100%;
    list-style: none;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.sbcontent{
    width:100%;
}

.sbcontent a{
    color: rgb(224, 224, 224);
    background-color: transparent;
    text-decoration: none;
    padding: 0 13px 0 10px;
}
.sbcontent a:hover {
    color: white;
    text-decoration: none;
}
@media(max-width:550px){
    .sidebar{
        width:75%;
    }
}