@import url("https://fonts.googleapis.com/css?family=Poppins:300,regular,800,900&display=swap");

.wrapper {
   position: relative;
   overflow: hidden;
   min-height: 100%;
}

.page {
   position: relative;
   height: 100vh;
   background: url(../img/background.jpg)0 0 /cover no-repeat;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Poppins', sans-serif;

}
.page__title {
  color: #2B2B2B;
  text-align: center;
  font-size: 10.375rem;
  font-weight: 300;
  line-height: 1;
  padding: 0.9375rem;
}
.page__title span{
   font-weight: 800;
}
.page__link {
  color: #292929;
  font-size: 2.25rem;
  font-weight: 400;
  position: absolute;
  bottom: 4.4%;
  right: 5.5%;
}
.page__link span{
   font-weight: 900;
}
.page__link:hover{
   text-decoration: underline;
}
@media(max-width: 767.98px){
   .page__title{
      font-size: 8.125rem;
   }
   .page__link{
      font-size: 1.5rem;
   }
}
@media(max-width: 600px){
   .page__title{
      font-size: 4.6875rem;
   }
   .page__link{
      font-size: 1.5rem;
   }
}