html, body {
      margin: 0;
      padding: 0;
      width: 100%;
}

body {
      font-family: "Helvetica Neue",sans-serif;
      font-weight: lighter;
}

header {
      width: 100%;
      height: 100vh;
      background: url(hero.jpg) no-repeat 50% 50%;
      background-size: cover;
      background-color: rgba(255, 255, 255, 0.5);
      position: relative;
}

.inner-container{
    text-align: center;
    position: absolute;
    width: 100%;
    color: #fff;
    height:auto;
    margin-top: 200px;
    overflow: hidden;
}

h1, h2{
  /*color: #7d2d2d;*/
  color: #5C0923;
  margin: 0 auto;
}

.inner-container h1{
  font-size: 5em;
  font-family: "Shadows into Light", sans-serif;
}

.btn{
    display: inline-block;
    font-size: 18px;
    width: 200px;
    font-weight: bold;
    padding: 10px;
    color: #000;
    border: 3px solid #000;
    text-align: center;
    outline: none;
    text-decoration: none;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
}

.btn:hover,.btn:active{
    background-color: #fff;
    color: #000;
    transition: background-color 0.3s ease-in, color 0.3s ease-in;
}

.content {
      width: 94%;
      margin: 4em auto;
      font-size: 20px;
      line-height: 30px;
      text-align: justify;
}

.logo {
      line-height: 60px;
      position: fixed;
      float: left;
      margin: 16px 46px;
      color: #fff;
      font-weight: bold;
      font-size: 20px;
      letter-spacing: 2px;
}
@media (max-width: 720px) {
    img{
      width: 75%;
      padding-left: 30px;
    }
}
.logo a{
      text-decoration: none;
      color: #fff;
}
nav {
      position: fixed;
      width: 100%;
      line-height: 60px;
}

nav ul {
      line-height: 60px;
      list-style: none;
      background: rgba(0, 0, 0, 0);
      overflow: hidden;
      color: #fff;
      padding: 0;
      text-align: right;
      margin: 0;
      padding-right: 40px;
      transition: 1s;
      z-index: 2
}

nav.black ul {
      background: #000;
}

nav ul li {

      padding: 16px 40px;

}

nav ul li a {
      text-decoration: none;
      color: #fff;
      font-size: 16px;
      padding: 14px 16px;
}

/*nav ul li a:hover{
  background-color: #f0f0f0;
  opacity: 0.40;
}*/

.menu-icon {
      line-height: 60px;
      width: 100%;
      background: #000;
      text-align: right;
      box-sizing: border-box;
      padding: 15px 24px;
      cursor: pointer;
      color: #fff;
      display: none;
      position: relative;
}


/*@media query*/

@media(max-width: 786px) {

      .inner-container{
            top: 0;
            margin-top: 30vh;
      }

      .logo {
            position: fixed;
            top: 0;
            margin-top: 16px;
      }

      nav ul {
            max-height: 0px;
            background: #000;
      }

      nav.black ul {
            background: #000;
      }

      .showing {
            max-height: 34em;
      }

      nav ul li {
            box-sizing: border-box;
            width: 100%;
            padding: 24px;
            text-align: center;
      }

      .menu-icon {
            display: block;
      }

}
