:root {
  --white: white;
  --black: black;
}

.div-block {
  height: 10vh;
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.div-block-2 {
  height: 90vh;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.text-block {
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
}

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

@media screen and (max-width: 479px) {
  .link {
    font-size: 17px;
    line-height: 17px;
  }
}


