html, body {
  padding: 0;
  margin: 0;
  background-color: #9d9d9b;
  font-family: 'Montserrat', sans-serif;
}

.header {
  height: 50vh;
  background: url(../assets/header.jpg) no-repeat;
  background-size: 100%;
  background-position: left top;
}

h1 {
  text-transform: uppercase;
  font-size: 46px;
  font-weight: 500;
  margin: 80px 0;
}

h2 {
  font-size: 32px;
  font-weight: 500;
  margin: 0;
}

.landing-page {
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 16px 16px;
}

p {
  margin: 0;
  font-weight: 200;
  font-size: 32px;
}

.no-break {
  white-space: nowrap;
}

@media only screen and (max-width: 1024px) {
  .header {
    background-size: 200%;
    height: 30vh;
    min-height: 200px;
  }

  h1 {
    margin: 40px 0;
    font-size: 22px;
  }
  
  h2, p {
    font-size: 16px;
  }
  
}