.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #565759;
}

.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.heading {
  padding: 10px;
  background-color: #d9b36c;
  font-family: Ubuntu, Helvetica, sans-serif;
  color: #fffcfc;
  font-size: 28px;
  line-height: 32px;
}

.text-block {
  font-family: Lato, sans-serif;
  color: #fff;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .heading {
    padding: 6px;
    font-size: 18px;
    line-height: 24px;
  }

  .image {
    max-width: 80vw;
  }

  .image-2 {
    max-width: 100px;
  }
}

@media screen and (max-width: 479px) {
  .text-block {
    font-family: Lato, sans-serif;
    color: #fff;
    font-weight: 300;
  }
}