.body {
  background-color: #1a1a1a;
}

.section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

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

.text-block {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 35px;
  font-weight: 200;
  line-height: 35px;
}

@media screen and (max-width: 767px) {
  .image {
    width: 50%;
  }

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

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

  .text-block {
    font-size: 20px;
    line-height: 20px;
  }
}


