.sidebar{
    width: 25vw;
    height: 50vh;
    transition: all ease-in-out 0.5s;
    position: absolute;
    left: -100vw;
    z-index: 100;
    background-color: #3e81aac2;
}
.sidebar .right {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.sidebar .right .list {
    width: 100%;
    height: 100%;
    border: 2px solid black;
}

.sidebar .right .list ul {
    height: 100%;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    list-style: none;
    margin: 0 0 0 6vh;
}

.sidebar .right .list ul>li {
    height: fit-content;
    width: fit-content;
}

.sidebar .right .list ul>li>a {
    text-decoration: none;
    color: var(--dark-bg-color);
    font-size: 1.5rem;
    font-family: 'Roboto Slab', serif;
    transition: all ease-in-out 0.5s;
}

.sidebar .right .list ul>li>a:hover{
    color: #5e6366;
}

.sidebar .right .dropdown {
    height: 20%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
}

.sidebar .right .dropdown select{
    height: fit-content;
    width: fit-content;
    background: #aeb0b1;
    color: var(--dark-bg-color);
    border: 2px solid transparent;
    border-radius: 0.5vw;
    outline: none;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all ease-in-out 0.5s;
}
.sidebar .right .dropdown select:hover{
    background: gray;
}
.sidebar .right .dropdown select:focus{
    background: rgb(88, 88, 88);
}
.ifleft{
    display: none;
}
@media (max-width: 1024px){
    header{
        height: 12vh;
    }
}
@media (max-width: 800px){
    .burger{
        display: block;
        z-index: 101;
    }
    nav .right{
        display: none;
    }
    nav .left{
        width: fit-content;
    }
} 
@media (max-width: 600px){
    nav{
        justify-content: start;
    }
    header{
        height: 5vh;
    }
    nav .Midd{
        display: none;
    }
    .burger{
        top: 0;
    }
    .burger span{
        font-size: 2rem;
    }
    .sidebar {
        width: 90vw;
    }
    main{
        font-size: 12px;
    }
}
@media (max-width: 1008px){
    main{
        height: fit-content;
    }
    .documentation p {
        font-size: 10px;
    }
}
@media (max-width: 310px){
    table{
        font-size: 10px;
    }
    .burger{
        left: 0;
    }
    .left{
        display: none;
    } 
    .ifleft{
        display: block;
        position: relative;
        left: 80%;
    }
}