.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f8f7f8;
}

.image {
  width: 400px;
}

.image-2 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.text-block {
  font-family: Lato, sans-serif;
  font-size: 18px;
}

.heading {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.div-block {
  width: 100%;
  height: 4px;
  margin-top: 10px;
  background-color: #000;
}

@media screen and (max-width: 479px) {
  .image-2 {
    width: 200px;
  }

  .text-block {
    font-size: 12px;
  }

  .heading {
    font-size: 24px;
    line-height: 34px;
  }
}