nav {
    background: white;
    left: 0;
    padding: 20px 0 10px;
    position: fixed;
    width: 100%;
    z-index: 100;
}

nav li,
nav li a {
    color: #555555;
    font-size: 14px;
    padding: 16px;
}

.main-nav-container {
    display: none;
    text-align: center;
    z-index: 10;
}

.main-nav-container .nav-item a {
    transition: color .5s ease;
}

.main-nav-container .nav-item.selected a {
    color: var(--red);
}

.main-nav-container.open {
    background-color: white;
    display: block;
    height: 100vh;
    position: fixed;
    width: 100%;
    margin-top: 60px;
    padding-bottom: 20px;
}

.main-nav-container.open li a {
    font-size: 18px;
}

.main-nav-container li {
    padding: 10px 0;
}

nav .hamburguer {
    height: 80px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

nav .hamburguer .meat {
    background-color: #999999;
    height: 3px;
    margin: 5px 0;
    transition: all .5s ease;
    width: 40px;
}

nav .hamburguer.open {
    background-color: white;
}

nav .hamburguer .meat-wrapper {
    margin-top: 40px;
    margin-left: 30px;
    position: relative;
}

nav .hamburguer.open .meat {
    left: 0;
    position: absolute;
    top: 0;
}

nav .hamburguer.open .meat.meat-1 {
    transform: rotate(45deg);
}

nav .hamburguer.open .meat.meat-2,
nav .hamburguer.open .meat.meat-3 {
    transform: rotate(315deg);
}

@media all and (min-width: 700px) {
    nav {
        border-bottom: 1px solid whitesmoke;
    }

    .main-nav-wrapper {
        width: 100%;
    }
    .main-nav-container {
        display: flex;
        justify-content: space-evenly;
        margin: auto;
        width: 80%;
    }

    .main-nav-container li {
        
    }

    nav .hamburguer {
        display: none;
    }
}
