.landing {
  background-color: #f5f5f5;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.lander-logo {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image {
  width: 600px;
  margin-bottom: 20px;
}

.text-block {
  color: #424242;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: Open Sans, sans-serif;
  font-size: 32px;
}

.text-block-2 {
  color: #525252;
  margin-bottom: 10px;
}

.text-block-2._1 {
  margin-bottom: 5px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
}

@media screen and (max-width: 479px) {
  .landing {
    background-color: #eee;
  }

  .image {
    width: 100%;
    margin-bottom: 40px;
  }

  .text-block {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.1;
  }

  .text-block-2._1 {
    font-family: Open Sans, sans-serif;
  }
}


