.menu,
.title {
    display: inline-block;
    vertical-align: middle;
}

.navbar .title {
    font-size: 2em;
    margin-left: 10px;
}

.menu .bar {
    width: 25px;
    height: 4px;
    margin-bottom: 5px;
    background: #b2d5da;
}

.page .navbar {
    width: 100%;
    margin: 0;
    padding: 10px 0;
}

.open-menu .menu-holder {
    left: 0;
}

.menu-holder {
    position: fixed;
    z-index: 10;
    top: 0;
    left: -100%;
    height: 100%;
    transition: 500ms all;
    background: #50c5e1;
    padding: 30px 35px;
}

.menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #50c5e1;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0, opacity 1s;
}

.open-menu .menu-overlay {
    opacity: 0.3;
    visibility: visible;
}

.menu-holder .bar {
    background: white !important;
}

.menu-holder h1 {
    color: white;
}

.menu-holder h1.active {
    text-decoration: underline;
}