body{
    background-color: #ededed;
}
.section{
    height: 50vh;
}
.SideBarOpen{
    position: fixed;
    top: 15px;
    left: 15px;
    cursor: pointer;
    z-index: 1;
}

.sidebarclose{
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.sidebarclose:is(:hover, :focus, :active){
    transform: rotate(360deg);
}


.sidebar{
    height: 100vh;
    width: 250px;
    background: #000;
    position: fixed;
    top: 0;
    left: -350px;
    z-index: 5;
    transition: all 0.4s ease-in-out;
}

.sidebar.active{
    left: 0;

}
.backDrop{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.6);
    z-index: 2;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
    animation: fadeIn .4s ease-in-out;

}

.backDrop.active{
    display: block;
}
.backDrop.active{
    left: 0;
}

@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}