#drawer {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.23s; /* Added transition property */
    padding-top: 90px;
}

#drawer a {
    padding: 12px 16px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    transition: 0.25s;
}

#drawer a:hover {
    color: #f1f1f1;
}

#drawer .close {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#menuButton {
    font-size: 32px;
    cursor: pointer;
    z-index: 1001;
    display: none;
    margin-right: 8px;
    position: absolute;
    left: 24px;
}

#overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

@media only screen and (max-width: 720px) {
    body {
        overflow: auto;
    }
    #menuButton {
        display: block;
    }
    .navbar-mid {
      display: none!important;
    }
    .navbar-title {
        left: 72px;
        display: block!important;
    }

    .navbar-title {
        left: 64px!important;
    }
}

@media only screen and (max-width: 560px) {
    .navbar-end {
      display: none!important;
    }
}
