.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  -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;
}

.image {
  position: relative;
  z-index: 1000;
  width: 50vw;
}

.link {
  position: relative;
  z-index: 1000000;
  padding-top: 24px;
  padding-bottom: 24px;
  font-family: Oswald, sans-serif;
  color: #e40514;
  font-size: 3vw;
  text-decoration: none;
}

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

  .link {
    font-size: 5vw;
  }
}

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

  .link {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 6vw;
  }
}

