body {
  background: #111;
  color: #fafafa;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

nav {
  background: #111;
  color: #fafafa;
  position: fixed;
  display: flex;
  text-align: center;
  justify-content: space-between;
  width: 100%;
  top: 0;
  padding: 1rem 0;
  z-index: 10;
}
nav .home-link {
  color: #fafafa;
  letter-spacing: 0.7em;
  margin-left: 1em;
}

nav .right {
  display: flex;
  padding-right: 1em;
}

.banner-img {
  width: 100%;
  height: 100vh;
  background-image: url("../img/home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-text {
  font-size: 6em;
  letter-spacing: 1em;
  font-weight: 300;
  text-align: center;
  text-indent: 1em;
}

.pure-menu-link {
  color: #eaeaea;
}

.mb-3 {
  margin-bottom: 1rem;
}

.button-primary {
  background: #111;
  color: #fafafa;
  padding: 0.5rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #333;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-indent: 0.5em;
  border-radius: 0;
}
.button-primary:hover {
  background: #222;
}

.home-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 100px;
  width: 100%;
  padding: 1rem 0;
}

.center {
  text-align: center;
}

.pure-menu-link:hover {
  color: #fafafa;
  background: #222;
}

@media screen and (max-width: 768px) {
  nav .home-link {
    margin-left: 0;
  }
  nav .right {
    padding-right: 0;
  }
  .banner-text {
    font-size: 3em;
    letter-spacing: 0.8em;
    text-indent: 0.8em;
  }
  .home-cta {
    bottom: 10px;
  }
}
