body {
  font-size: 1.5em;
  line-height: 1.5em;
  font-family: 'Lato', sans-serif;
  font-weight: lighter;
  margin: 0;
  padding: 0;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
}

/* --- top --- */

header {
  height: 100vh;
  width: 100%;
  background-image: url(https://images.unsplash.com/photo-1541616138747-f4a42c7f0668?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header hr {
  border: 3px solid RGBA(250,250,250,80%);
  position: absolute;
  width: 90%;
}

#top-line {
  top: 5%;
}

#bottom-line {
  bottom: 5%;
}

#title {
  width: 60%;
  background-color: RGBA(250,250,250,80%);
  padding: 2%;
}

h1 {
  line-height: 2.5rem;
  font-size: 2.5rem;
  font-style: italic;
}

h1, h2 {
  font-weight: 300;
  margin-top: 2rem;
}

h2 {
  font-family: 'Bebas Neue';
  font-size: 2rem;
}

h3 {
  margin-top: 5%;
}

#arrow {
  position: absolute;
  right: 10%;
}

#arrow .material-icons {
  font-size: 5em;
  color: RGBA(250,250,250,90%);
  background-color: RGBA(0,0,0,90%);
  border-radius: 50%;
}

#arrow a {
  color: RGBA(250,250,250,90%);
  text-decoration: none;
}

#arrow .material-icons:hover {
  transform: scale(1.5);
}

/* --- content sections --- */

a {
  color: #000;
}

h3 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-style: italic;
  font-weight: 300;
  padding-bottom: 3%;
  border-bottom: 3px solid #000;
}

section {
  position: relative;
  width: 100%;
  height: 100;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: #222;
  font-weight: 300;
  font-size: 1.2rem;
  clear: both;
  display: flex;
  flex-direction: row;
}

.next-section {
  font-family: 'Bebas Neue';
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: bold;
  float: right;
}

.next-section a {
  text-decoration: none;
}

.next-section:hover a {
  transform: scale(1.2);
}

#about .next-section {
  margin-top: 5%;
}

#forms .next-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  padding: 0 5% 0 5%;
}

.next-section a{
  border-top: 5px solid #000;
  padding-top: 5%;
}

#about-inner, #credits {
  margin-left: auto;
  margin-right: auto;
  min-height: 100%;
}

#about-inner {
  width: 70%;
  padding: 0% 5% 5% 5%;
}

#forms-inner {
  padding: 5% 5% 0 5%;
  width: 30%;
}

#about-inner, #forms-inner {
  background-color: #f4f4f5;
}

#about, #forms{
  padding: 10vh 0 0 0;
}

#bottom {
  margin-top: 5%;
}

#credits {
  width: 90%;
}

#credits {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto 0 auto;
}

/* --- columns --- */
.column {
  width: 20%;
  background-color: RGBA(250,250,250,90%);
  padding: 5%;
  font-size: 1rem;
}

/* --- images --- */
#about-side, #chair, #forms-side, #bottom {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}

#about-side {
  width: 20%;
  height: inherit;
  background-image: url(grass.jpg);
  overflow: visible;
  clear: both;
  float: left;
}

#forms-side {
  width: 40%;
  height: inherit;
  background-image: url(window.jpg);
  clear: both;
}

#bottom {
  background-image: url(plants.jpg);
  background-position: bottom;
}

.left, .right {
  width: 30%;
}

.left {
  float: left;
}

.right {
  float: left;
}

.moh-logo {
  width: 50%;
  border-radius: 0 15% 0 15%;
  border: 20px solid #fff;
}

/* --- responsive styling --- */
@media screen and (max-width:1000px) {
  #credits {
    display: block;
  }

  .column {
    width: 90%;
    margin-bottom: 5%;
  }

  .moh-logo {
    width: 30%;
  }
}

@media screen and (max-width:800px) {
  #title {
    width: 96%;
  }

  #arrow {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 15%;
  }

  #arrow .material-icons {
    font-size: 2em;
    background-color: RGBA(0,0,0,90%);
    border-radius: 50%;
  }

  #arrow a {
    color: RGBA(250,250,250,90%);
    text-decoration: none;
  }

  #arrow .material-icons:hover {
    transform: scale(1.5);
  }

  hr {
    display: none;
  }

  #forms {
    flex-wrap: wrap;
  }

  #forms-inner {
    width: 45%;
  }

  #forms-side {
    width: 45%;
  }

  #forms .next-section {
    width: 100%;
    height: auto;
    margin-top: 5%;
    align-items: flex-end;
  }

  #forms .next-section a {
    padding-top: 2%;
  }
}

@media screen and (max-height:400px) {
  hr {
    display: none;
  }
}
