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

.main_box{
    background-image:url("photo.jpg");
    height:100vh;
    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.3s linear;
}

.sidebar-menu{
    position: fixed;
    left: -300px;
    height: 100vh;
    width: 300px; 
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
    transition: all 0.3s linear;
}

.sidebar-menu .logo{
    position: absolute;
    width: 100%;
    line-height: 60px;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    height: 60px;
}

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

.sidebar-menu .menu{
    position: absolute;
    /* line-height: 60px; */
    width: 100%;
    top: 50px;
}

.sidebar-menu .btn-2 i {
    position: absolute;
    color: gray;
    font-size: 25px;
    left: 275px;
    line-height: 60px;
    /* opacity: 0; */
    cursor: pointer;
    transition: all 0.3s linear;
}

.sidebar-menu .menu li{
    margin-top: 6px;
    padding: 14px 20px;
}


.sidebar-menu .menu a, i{
    color: white;
    text-decoration: none;
    font-size: 20px;
}
.sidebar-menu .menu i{
    padding-right: 10px;
}

.sidebar-menu .social_media{
    position: absolute;
    color: white;
    opacity: 0.5;
    left: 40px;
    top: 575px;
} 
.sidebar-menu .social_media i{
    padding-right: 8px;
}

#check{
    display: none;
}

.sidebar-menu .menu li:hover{
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

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

.sidebar-menu .social_media i:hover{
    opacity: 1;
    transform: scale(1.5);
}

#check:checked ~ .sidebar-menu{
    left: 0px;
}

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