#header #hamburger {
    height: 6vh;
    padding: 3vh 0 0 0;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    top: 0;
}
   
    #menu-link {
        display: inline-block;
        text-decoration: none;
        font-family: 'Staatliches', cursive;
        font-size: 20px;
        line-height: 18px;
    }
        
    .menu-icon {
        position: relative;
        width: 20px;
        height: 14px;
        display: inline-block;
    }

    .menu-line {
        background-color: #339999;
        height: 2px;
        width: 100%;
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: all 0.25s ease-in-out;
    }
    
    .menu-line-2 {
        top: 0;
        bottom: 0;
        margin: auto;
    }
    
    .menu-line-3 {
        bottom: 0;
    }
    
    #hamburger.open .menu-line-1 {
        transform: translateY(7px) translateY(-50%) rotate(-45deg);
    }
    
    #hamburger.open .menu-line-2 {
        opacity: 0;
    }
    
    #hamburger.open .menu-line-3 {
        transform: translateY(-7px) translateY(50%) rotate(45deg);
    }
    
    .menu-circle {
        width: 100%;
        height: 100%;
        left: 0;
        position: absolute;
        transition: transform 0.3s ease-in-out;
        background-color: #fff;
    }

    #hamburger.open .menu-circle {
        transform: scale(10);
    }
        
    #header #menu {
        width: 100%;
        height: fit-content;
        margin: 0;
        padding-bottom: 20px;
        text-align: center;
        
        transition: opacity 0.2s ease-in-out;
        opacity: 0;
        visibility: hidden;
        
        background-color: #fff;
        color: #000;
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        position: absolute;
        top: calc(100% - 10px);
    }
    
    #header #menu.open {
        opacity: 1;
        visibility: visible;
    }