* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%; /* 10px browser default */
}
body {
  background: black;
  color: white;
}
.main-hero {
  background: url(../images/IMG_3623.png) center top no-repeat;
  background-size: cover;
  height: 100vh;
}
.page-wrapper {
  position: relative;
  max-width: 103.6rem;
  padding: 160px 20px 10px;
  margin:0 auto;
  box-sizing: border-box;
}
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  width: 13.5rem;
  height: 4.3rem;
  background: url(../images/IMG_3622.png) no-repeat;
  background-size: contain;
  text-indent: -99em;
}
h1 {
  text-align: center;
  font: clamp(4rem, 5vw, 5.6rem) "Outfit", sans-serif;
  font-weight: 700;
}
h1 span {
  position: relative;
  font-style: italic;
  display: inline-block;
}
h1 span i {
  position: relative;
  z-index: 99;
}
h1 span:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 5px;
  background-color: #dea547;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 600px) {
  .main-hero {
    background: url(../images/IMG_3623.png) center 40px no-repeat;
    background-size: cover;
    height: 100vh;
  }
  .page-wrapper {
    padding: 126px 20px 10px;
  }
  h1 {
    text-align: center;
    font: clamp(3.6rem, 4vw, 5.6rem) "Outfit", sans-serif;
    font-weight: 700;
  }
  h1 span:after {
    bottom: 0;
  }

}