body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

.menu-link-wrapper {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 65px;
    height: 45px;
    cursor: pointer;
    z-index: 9999;
}

.menu-link {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    z-index: 9999;
}

.lines {
    transition: transform 0.3s ease;
    display: block;
    width: 60%;
    height: 2px;
    background: #a1aab3;
    transform-origin: 50% 50%;
    margin: 0 20%;
    position: relative;
    top: 22px;
    z-index: 9999;
}

.lines:before,
.lines:after {
    transition: transform 0.3s ease;
    display: block;
    width: 100%;
    height: 2px;
    background: #a1aab3;
    position: absolute;
    left: 0;
    content: '';
    z-index: 9999;
}

.lines:before { top: -10px; }
.lines:after { top: 10px; }

.menu-trigger-open .lines {
    background: transparent;
}

.menu-trigger-open .lines:before {
    transform: translateY(10px) rotate(45deg);
}

.menu-trigger-open .lines:after {
    transform: translateY(-10px) rotate(-45deg);
}

.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background: rgba(51, 51, 51, 0.95);
    transition: left 0.3s ease;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.5);
    border-radius: 0 5px 5px 0;
    padding-top: 80px;
    overflow-y: auto;
    z-index: 8000;
}

.menu.open {
    left: 0;
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu ul li a {
    display: block;
    padding: 10px 35px;
    color: #806a40;
    text-decoration: none;
    border-bottom: 1px solid #444;
}

.menu ul li a:hover,
.menu ul li a:focus {
    background-color: #555;
    outline: none;
    color: #eBbf6b;
}