#main_menu{
    position: absolute;
    z-index: 10;
    width: 100vw;
    height: 70px;
    display: flex;
    justify-content: space-between;
    background: black;
    transition: all 1s;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);
}
.mm_show{
    box-shadow: none !important;
}

#menu_logo{
    width: 60px;
    height: 60px;
    margin-top: 5px;
    margin-left: 2vw;
    background-image: url(../images/logo1.png);
    background-size: contain;
}
#main_menu_button{
    width: 60px;
    height: 60px;
    padding: 10px;
    margin-top: 5px;
    margin-right: 2vw;
    border-radius: 10px;
    background: none;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#main_menu_button:hover{
    cursor: pointer;
}
.menu_button_bar{
    width: 40px;
    height: 5px;
    margin: 2px 0px;
    border-radius: 2px;
    background: white;
    transition: all 1s;    
}

.mmb1{ transform: translate(0,9px) rotate(315deg); }
.mmb2{ transform: rotate(315deg); }
.mmb3{ transform: translate(0,-9px) rotate(-315deg); }

.main_menu_list{
    position: absolute;
    z-index: 9;
    width: 100vw;
    background: black;
    box-shadow: 5px 0px 20px 0px rgba(0,0,0,0.3);
    transform-origin: top;
    transform: scaleY(0) translate(0,70px);
    transition: all .5s;
}
.mml_appear{
    display: block;
    transform: scaleY(1) translate(0, 70px);
}
.mm_link{
    text-decoration: none;
    color: white;
    transition: .5s;
}
/* .mm_link:hover{
    color: hsl(160, 50%, 70%);
} */
.mm_li{
    padding: 20px;
    transition: all .5s;
}
.mm_li:hover{
    background-color: hsla(50, 100%, 100%, 0.3);
}

@media(min-width: 700px){
    #main_menu_button{
        display: none;
    }
    .main_menu_list{
        z-index: 11;
        right: 2vw;
        width: fit-content;
        height: 70px;
        display: flex;
        align-items: center;
        transform: scaleY(1) translate(0);
        box-shadow: none;
    }
}