*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

.main_box{
    background: url(photo\ \(1\).jpg);
    height: 100vh;
    background-size: cover;
}

.button_1 i{
    color: white;
    font-size: 25px;
    position: absolute;
    left: 16px;
    line-height: 60px;
    transition: all 0.2s linear;
}

.main_menu{
    position: fixed;
    left: -300px;
    height: 100vh;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.5) ;
    transition: all 0.2s linear;
}

.main_menu .logo {
    position: absolute;
    width: 100%;
    line-height: 60px;
    box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5) ;
    /* line-height: 60px;  */
    height: 60px;
}

.main_menu .logo a{
    position: absolute;
    left: 50px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    /* font-weight: 700px; */

}

.main_menu .menu {
    position: absolute;
    width: 100%;
    top: 90px; 
}

.main_menu .menu li{
    margin-top: 6px;
    padding: 10px 20px;
}

.main_menu .button_2 i{
    color: grey;
    font-size: 25px;
    line-height: 60px;
    position: absolute;
    left: 270px;
    /* opacity: 0; */
    cursor: pointer ;
    transition: all 0.2s linear;
}

.main_menu .menu a,i{
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.main_menu .menu i{
    padding-right: 8px;
}

.main_menu .social_media{
    
    position: absolute;
    /* bottom: 50px; */
    left: 25%; 
    bottom: 50px;
}

.main_menu .social_media i{
    color: white;
    opacity: 0.5;
    padding: 0px 5px;
}

#check{
    display: none;
}

.main_menu .menu li:hover{
    box-shadow:0px 0px 4px rgba(255, 255, 255, 0.5) ;
}

.button_1 i:hover{
    font-size: 30px;
}

.button_2 i:hover{
    font-size: 30px;
}

.main_menu .social_media i:hover{
    opacity: 1;
    transform: scale(1.2);
}

#check:checked ~ .main_menu{
    left: 0px;
}

#check:checked ~ .button_1 i{
    opacity: 0;
}

#check:checked ~ .main_menu .button_2{
    opacity: 1;
}