html {
    position: relative;
    min-height: 100%;
}
body {
  font-family: 'Libre Baskerville', serif;
  display: flex;
  flex-direction: column;
  background: #FBFBFB;
}
h1 {
  font-size: 4rem;
  font-weight: 500;
}
h2 {
  font-size: 1.5rem;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding-top: 20px;
}
h3 {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 0;
}
p {
  margin-bottom: 0rem;
}
a {
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
}
.header {
  position: fixed;
}
.nav {
  justify-content: center;
  font-size: 0.9rem;
}
.nav-link {
    padding: 1rem 1.3rem;
}
.nav-link:hover {
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}
.title-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}
.lines {
  width: 250px;
  height: 6px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  margin: 0 auto;
}
.information {
  text-align: center;
  line-height: 2.7em;
  padding: 40px 0;
  font-size: 0.9rem;
}
.menu {
  text-align: center;
  font-size: 1.1rem;
  padding-top: 80px;
  margin-bottom: 155px;
}
.menu-section {
  padding-bottom: 45px;
}
.special {
  font-size: 90%;
  font-style: italic;
}
.menu-button {
  margin: 50px 0;
}
.menu-button a:link, .menu-button a:visited {
  background-color: #000;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.menu-button a:hover, .menu-button a:active {
  background-color: #000;
}
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  margin-bottom: 15px;
  margin-top: auto;
}
footer img {display: flex;max-width: 100px;max-height: 40px;}

/* Overlay
-------------------------*/
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #FBFBFB;
  overflow: scroll;
}
.overlay-content {
  position: relative;
  top: 20%;
  width: 85%;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}
.overlay-content h2 {
  margin-bottom: 4rem;
}
.overlay-content p {
  margin-bottom: 1rem;
}
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #212529;
  display: block;
  transition: 0.3s;
}
.overlay .closebtn {
  position: fixed;
  top: 0px;
  right: 25px;
  font-size: 40px;
}

/* contact form
-------------------------*/
input {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
textarea {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.contact-form {
  max-width: 600px;
  width: 90%;
  text-align: center;
  margin: 0 auto;
}
.contact-form input {
  width: 100%;
  text-align: center;
  font-size: .8em;
  border: 0px;
  border-bottom: 1px solid #444;
  padding: 1rem 2rem;
  margin-bottom: 1.4em;
  line-height: 1em;
  background-color: #FBFBFB;
}
.contact-form textarea {
  width: 100%;
  text-align: center;
  font-size: .8em;
  border: 0px;
  border-bottom: 1px solid #444;
  padding: 1rem;
  margin-bottom: 2.4em;
  line-height: 1em;
  background-color: #FBFBFB;
}
.contact-form .button {
  width: auto;
  border-bottom: none;
  font-style: normal;
  color: #FBFBFB;
  background-color: #212529;
}

/* Responsive Changes
-------------------------*/
@media (min-width: 768px) {

  .nav {
    -webkit-transform: rotate(-90deg) translateZ(0);
    transform: rotate(-90deg) translateZ(0);
    font-size: 1.3rem;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-left: -165px;
  }
  .title {padding-top: 175px;}
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .lines {
    width: 315px;
  }
  .information {
    font-size: 1rem;
  }
  footer img {
    max-width: 150px;
    max-height: 60px;
  }
  .overlay .closebtn {
    font-size: 60px;
  }
  .overlay-content p {
    margin-bottom: 2rem;
  }
  #myInfo {
    font-size: 1.3rem;
    font-weight: 100;
    line-height: 1.7;
  }

}
