@import url(http://fonts.googleapis.com/css?family=Vollkorn|Roboto);


@media screen and (min-width: 801px) and (max-width: 3000px) {
.toggle-button {
    position: fixed;
    top:0;
    right:0;
	padding:40px 10px 0 10px;
    height: 100px;
    width: 100px;
    cursor: pointer;
    z-index: 3;
	background:#CBAB86;
	box-sizing:border-box;
}
}

@media screen and (min-width: 601px) and (max-width: 800px) {
.toggle-button {
    position: fixed;
    top:0;
    right:0;
	padding:25px 10px 0 10px;
    height: 70px;
    width: 70px;
    cursor: pointer;
    z-index: 3;
	background:#CBAB86;
	box-sizing:border-box;
}
}

@media screen and (min-width: 1px) and (max-width: 600px) {
.toggle-button {
    position: fixed;
    top:0;
    right:0;
	padding:15px 10px 0 10px;
    height: 55px;
    width: 55px;
    cursor: pointer;
    z-index: 3;
	background:#CBAB86;
	box-sizing:border-box;
}
}







.bar {
    background-color: #fff;
    display: block;
    width: 100%;
    height: 5px;
    border: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
}
.bar + .bar {
    margin-top: 4px;
}
.middle {
    top: 11px;
}
.bottom {
    top: 22px;
}
.toggle-button:hover {
    opacity: .7;
}
.toggle-active .bar {
    background-color: #fff;
}
.toggle-active .top {
    -webkit-transform: translateY(6px) translateX(0) rotate(45deg);
}
.toggle-active .middle {
   opacity: 0;
}
.toggle-active .bottom {
    -webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
}

.overlay {
    position: fixed;
    background-color: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
}
.nav-active {
    opacity: .9;
    visibility: visible;
    height: 100%;
/*    max-height: 340px;*/
}
.overlay ul {
    display: block;
    position: relative;
    top: 60px;
    left: 0;
    font-family: 'Vollkorn', serif;
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    list-style: none;
    padding: 0;
}
.overlay ul li {
    display: block;
}
.overlay ul li a {
    color: #fff;
    text-decoration: none;
}

.container {
  max-width: 500px;
  margin: 500px auto;
  padding: 100px auto;
}