body {
  margin: 20px 24px;

  font-family: "Space Mono", monospace;
  color: #333333;
}

.header__title {
  font-family: Inconsolata, monospace;
  text-transform: uppercase;
  font-size: 24px;
}

.page-content {
  margin-top: 64px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* .page-content__imageblock {
  width: 290px;
  height: 240px;
  background: url("../img/Scarecrow.png") no-repeat center / cover;
} */

.page-content__image {
  object-fit: cover;
  width: 290px;
}

.page-content__title {
  font-size: 48px;
  line-height: 71px;
  letter-spacing: -0.035em;
}

.page-content__text {
  font-family: Space Mono;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.035em;
  color: #4f4f4f;
}

.btn {
  margin-top: 64px;

  display: inline-block;
  padding: 24px 43px;

  font-family: Space Mono;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #333333;
  color: #ffffff;
}

.page-footer {
  margin-top: 96px;
}

.page-footer__creds {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
}

@media screen and (min-width: 720px) {
  body {
    max-width: 1200px;
    width: 100%;
    margin: auto;
  }

  .page-content {
    margin-top: 200px;

    flex-direction: row;
  }

  .page-content__imageblock {
    width: 50%;
    margin-right: 118px;
  }

  .page-content__image {
    width: 100%;
    object-fit: cover;
  }

  .page-content__textblock {
    width: 50%;
  }

  .page-content__title {
    width: 586px;
    font-size: 64px;
    line-height: 95px;
    letter-spacing: -0.035em;
  }

  .page-content__text {
    width: 380px;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.035em;
  }

  .page-footer {
    margin-top: 290px;
  }
}