*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
}

.main_box{
    height: 100vh;
    background: url(photo.jpg);
    background-size: cover ;
}

.btn_one i{
    color: white;
    font-size: 30px;
    font-weight: 700;
    position: absolute;
    left: 16px;
    line-height: 60px;
    cursor: pointer;
    transition: all 0.2s linear;

    /* z-index: 3; */


}
.sidebar_menu{
    position: fixed;
    left: -500px;
    height: 100vh;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 1px 1px 7px rgba(255, 255, 255, 0.5) ;
    transition: all 0.2s linear;


}

.sidebar_menu .logo{
    position: absolute;
    line-height: 60px;
    width: 100%;
    position: absolute;
    box-shadow: 1px 1px 7px rgba(255, 255, 255, 0.5) ;
}

.sidebar_menu .logo a{
    position:relative;
    left: 50px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.btn_two i{
    color: gray;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    left: 265px;
    line-height: 60px;
    cursor: pointer;
    transition: all 0.2s linear;

}

.sidebar_menu .menu  {
    
    width: 100%;
    position: absolute;
    top: 100px;
    /* left: 50px; */
}

.sidebar_menu .menu i , a{
    text-decoration: none;
    color: white;
    font-size: 17px;
}

.sidebar_menu .menu i{
    padding-right: 8px;
}

.sidebar_menu .menu li{

    margin-top: 10px;
    padding: 16px 30px;
    /* width: 100%; */
    
    /* border: solid white 1px; */
}

.social{
    position: absolute;
    bottom: 40px;
    left: 25%;
    
}

.social i {

    padding: 2px 5px;
    color: white;
    opacity: 0.5;
}

#check{
    display: none;
}

.sidebar_menu .menu li:hover{
    box-shadow: 1px 1px 5px rgba(255, 255, 255, 0.5) ;
}

   
.social i:hover {
     transform: scale(1.3);
     opacity: 1;

}

.btn_one i:hover{
    font-size: 35px;
}

.btn_two i:hover{
    font-size: 30px;
}

#check:checked ~ .sidebar_menu {
    left: 0px;
}

#check:checked ~ .btn_one i {
    opacity: 0;
}