html {
font-size: 16px;
}
@media (max-width: 699px) {
html {
font-size: 14px;
}
}

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  min-height: 100vh;
  -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;
  background-color: #000;
}

.wrapper__info {
  width: 100%;
  max-width: 350px;
  text-align: center;
}

.logo {
  width: 100%;
  margin-bottom: 4.5rem;
}

.heading {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Montserrat, sans-serif;
  color: #f8b3ae;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  text-transform: uppercase;
}

.heading.white {
  margin-bottom: 4.5rem;
  color: #fff;
  text-transform: none;
}

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

@media screen and (max-width: 479px) {
  .wrapper__info {
    max-width: 300px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .logo {
    margin-bottom: 3rem;
  }
  .heading {
    font-size: 1rem;
  }
  .heading.white {
    margin-bottom: 3rem;
  }
}
