html {
  font-size: 14px;
}
html, body {
  font-family: Nokora, sans-serif;
}
h1 {
  font-weight: normal;
}
.site-header {
  & .logo {
    max-width: 270px;
  }
}
.site-wrapper {
  background-color: #00949e;
}
.site-header__top {
  padding: 3rem 0;
  @media only screen and (max-width: 1024px)  {
    text-align: center;
  }
}
.site-header__bottom {
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  @media only screen and (min-width: 1024px)  {
    height: 440px;
    background-image: url('./splash.jpg');
  }
}
.site-navigation-header {
  flex-basis: 30%;
  flex-grow: 1;
  background-color: rgba(0,0,0,0.8);
  & nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    text-align: center;
    @media only screen and (min-width: 1024px)  {
      text-align: right;
    }
  }
  & a {
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    color: #8c8c8c;
    padding: .25rem 1rem;
    margin-right: 1.5rem;
    @media only screen and (min-width: 1024px)  {
      border-right: 3px solid transparent;
    }
  }
  & a.active, a:hover {
    color: #d9a338;
    border-color: #d9a338;
  }
}
.site-splash {
  flex-basis: 70%;
  @media only screen and (max-width: 1024px)  {
    display: none;
  }
}
.site-main {
  background-color: #FFFFFF;
  color: #3B4040;
  padding: 1.5rem;
}
.site-space {
  background-color: #a37823;
  color: #5E5E5E;
  height: 75px;
}
.site-header__top, main, footer {
  width: min(1024px, 100%);
  margin: 0 auto;
}
.images {
  display: flex;
  flex-wrap: wrap;
  & img {
    max-width: 100%;
    @media only screen and (min-width: 1024px)  {
      width: 200px;
    }
  }
}
footer {
  background-color: #00181e;
  color: #E0E0E0;
  letter-spacing: 1px;
  text-align: center;
  padding: 0 0 3rem;
  & p {
    font-size: 10px;
  }
}
.site-navigation-footer {
  & nav {
    padding: 1.5rem 0;
  }
  & a {
    text-transform: uppercase;
    color: #E0E0E0;
    padding: .25rem .5rem;
  }
  & a.active, a:hover {
    text-decoration: none;
  }
}