@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

header {
    background-color: var(--dark-bg-color);
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    justify-content: space-between;
}

.logo {
    width: 100px;
    height: 100px;
    filter: invert(100%) sepia(100%) hue-rotate(35deg) brightness(90%);
}

#menu_container { 
    width: 100%;
}

.hide {
    display: none;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    padding: 0;
}

nav li {
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

nav li:hover .container_icon {
    left: 0;
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--light-font-color);
    font-size: 20px;
}

nav a:hover {
    color: var(--highlight-color);
}

.container_icon {
    width: 29px;
    height: 29px;
    position: relative;
    animation: rotate 5s linear infinite;
    margin-right: 5px;
    left: -100%;
    transition: left 0.5s ease;
}
  
.bubble {
    width: 24;
    height: 24;
    position: absolute;
    border-radius: 15px;
    background-color: #843900;
}

.bubble-left {
    left: 0;
    top: 0;
}

.bubble-right {
    left: 5px;
    top: 2px;
  }

.bubble-bottom {
    left: 2px;
    top: 5px;
}
  
.menu_icon {
    left: 2px;
    top: 2px;
    background: radial-gradient(circle, rgba(52,45,39,1) 55%, rgb(228 190 151) 65%, rgb(201 130 74) 100%);
}

#burger {
   display: none; 
}

header h1 {
    display: none;
    padding: 0;
}

@media (max-width: 1000px) {
    header h1 {
        display: flex;
    }
    .logo {
        width: 50px;
        height: 50px;
    }
    nav {
        height: 100%;
    }
    nav ul {
        height: 100%;
        flex-direction: column;

    }
    #menu_container {
        position: fixed;
        top: 0; 
        height: 100%;
        background: var(--dark-bg-color);
    }
    #burger {
        display: block;
        cursor: pointer;
    }
    #burger .container_icon {
        left: unset;
    }
    li .container_icon {
        display: none;
    }
}