.div-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.image {
  max-width: 20%;
}

.text-block {
  text-align: center;
  width: 20%;
  max-width: 50%;
  margin-top: 40px;
  font-family: Inconsolata, monospace;
  font-size: 1rem;
  line-height: 1.4rem;
}

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

  .text-block {
    width: 60%;
    max-width: 80%;
  }
}

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

  .text-block {
    width: 60%;
    max-width: 80%;
  }
}

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

  .text-block {
    width: 80%;
    max-width: 80%;
    font-size: .9rem;
    line-height: 1.2rem;
  }

  .text-span {
    font-size: 1.1rem;
  }
}


