 *{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
 }
 .main_box{
    background: url("camera.jpg");
    height: 100vh;
    background-size: cover;
 }
 .btn_one i{
    font-size: 30px;
    font-weight: 700;
    position:absolute;
    line-height: 60px;
    left: 16px;
    cursor: pointer;
 }
 .sidebar_menu{
    position: fixed;
    left:-300px;
    height: 100vh;
    width: 300px;
    background-color: rgb(255,255,255, 0.1);
    box-shadow: 0 0 6px rgb(255,255,255,0.5);
    transition: 0.2s linear;
 }
 .sidebar_menu .logo{
    position: absolute;
    width: 100%;
    line-height: 60px;
    font-weight: 400;
    border: 1px solid rgb(255,255,255,0.5);
    box-shadow: 0 0 8px rgb(255,255,255,0.5);
    height: 60px;

 }
 .sidebar_menu .logo a{
    position: absolute;
    font-size: 25px ;
    font-weight: 500;
    left: 60px;
    color: white;
    text-decoration: none;

 }
 .sidebar_menu .btn_two i{
    font-size: 25px;
    position: absolute;
    line-height: 20px;
    left: 270px;
    top: 17px;
    cursor: pointer;
 }
 .sidebar_menu .menu{
    position: absolute;
    width: 100%;
    color: white;
    top: 80px;
 }
  .sidebar_menu .menu li{
    margin-top: 6px;
    padding: 15px 20px;
  }
  .sidebar_menu .menu i,a{
    color: white;
    text-decoration: none;
    font-size: 20px;

  }
  .sidebar_menu .menu i{
    padding-right: 8px;
  }
  .sidebar_menu .social_media{
    color: white;
    opacity: 0.5;
    position: absolute;
    left: 25%;
    bottom: 15%;
  }
  .sidebar_menu .social_media i{
    color: white;
    opacity: 0.5;
    padding: 0 5px;
  }
  #check{
    display: none;
  }
.sidebar_menu .menu li:hover{
    border: 1px solid rgb(255,255,255,0.5);
    box-shadow: 0 0 8px rgb(255,255,255,0.5);
}
.btn_one i:hover{
    font-size: 37px;
}
.btn_two i:hover{
    font-size: 30px;
}
.sidebar_menu .social_media i:hover{
    opacity: 1.2;
    transform: scale(1.2);
}
#check:checked ~ .sidebar_menu{
    left: 0;
}
#check:checked ~  .btn_one i{
    opacity: 0;
}