.h1 {
  margin-top: 10px;
  margin-bottom: 0px;
  font-family: Bitter, serif;
  font-size: 76px;
  line-height: 110%;
  text-align: center;
  text-transform: none;
}

.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding-top: 50px;
  padding-bottom: 50px;
  -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;
}

.h2 {
  margin-top: 10px;
  font-family: Varela, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.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;
}

.link {
  margin-top: 140px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Varela, sans-serif;
  color: #757575;
  font-size: 20px;
  text-decoration: none;
}

.link:hover {
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 479px) {
  .h1 {
    font-size: 56px;
  }

  .h2 {
    font-size: 16px;
    text-align: center;
  }

  .link {
    font-size: 17px;
  }
}