* {
  box-sizing: border-box;
}
body {
  height: 100vh;
}

.menu-wrap {
  position: fixed;
  left: 0;
  z-index: 1001;
  width: 300px;
  height: 100%;
  padding: 10px 40px 40px 10px;
  background-color: #222;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  transition: all 0.5s cubic-bezier(0.7,0,0.3,1);
  transform: translate3d(-360px,0,0);
}
.menu-wrap.active {
  transform: translate3d(0px,0,0);
}

.menu-wrap .menu .icon-list a {
  position: relative;
  text-align: left;
  font-family: "Oswald", "Helvetica Neue", Helvetica, sans-serif;
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #eee;
  font-size: 30px;
  transition: all 0.3s ease;
}
.menu-wrap .menu .icon-list a::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  top: 80%;
  transition: all 0.3s ease;
}
.menu-wrap .menu .icon-list a:hover {
  color: #FA6;
}
.menu-wrap .menu .icon-list a:hover::before {
  width: 80%;
  background-color: #FA6;
}
/* Buttons */
.menu-button, 
.close-button {
  padding: 10px;
  position: fixed;
  top: 50px;
  width: auto;
  height: auto;
  background-color: #fff;
  font-size: 40px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.menu-button {
  right: 0px;
  z-index: 102;
}
.close-button {
  left: 300px;
  z-index: 100;
}
/* Content */
.content {
  text-align: center;
  color: #282828;
  padding-top: 80px;
}
.content h2 {
  position: relative;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 35px;
  font-family: "Oswald", "Helvetica Neue", Helvetica, sans-serif;
}
.content h2::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #222;
  bottom: -15px;
  left: 50%;
  margin-left: -50px;
}
.content p {
  width: 80%;
  margin: 10px auto;
  line-height: 1.85;
  color: #444;
  font-family: "Lato", "Helvetica Neue", Helvetica, sans-serif;
}
