html, body{
    margin: 0; padding: 0; box-sizing: border-box;
    width: 100%; height: 100vh; overflow: hidden;
    background-image: url(side.jpeg);
    background-size: cover; background-position: center;
    font-family: 'Poppins', sans-serif;
}

.Bar{
    color: white; font-size: 2rem; padding: 20px; cursor: pointer;
}

#check:checked ~ .Bar{
    display: none; 
}

.sidebar{
    position: fixed; top:0; left: -400px; 
    width: 250px; height: 100%; color: white;
    transition: all 0.3s linear; box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.062);
}

#check:checked ~ .sidebar{
    left: 0;
}

#check{
    display: none; 
}

.Top_Logo{
    box-sizing: border-box; border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    height: 70px; 
    display: flex; align-items: center; justify-content: space-evenly;
}

.Logo{
    font-size: 1.6rem;
    color: white; text-decoration: none; font-weight: bold;
}

#close{
    font-size: 1.6rem; cursor: pointer; color: black;
}

.social_media{
    position: absolute; bottom: 40px; left: 0; width: 100%;
    display: flex; justify-content: center; align-items: center; 
}

.social_media .icons{
    display: flex; gap: 10px;
    font-size: 24px; color: white; cursor: pointer; 
    
}

.menu{
    width: 100%;
}

.menu .list{
    margin-top: 40px;
    display: flex; flex-direction: column; gap: 30px;
}

.list a{
    text-decoration: none; color: white;
}

ul.list{
    list-style: none; 
}

.list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    width: 100%;
    padding: 10px 15px; 
    box-sizing: border-box; 
    cursor: pointer;
    border-left: 4px solid transparent; 
    transition: all 0.3s ease; 
}

.list li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left: 2px solid white; 
}