html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}
img {
  border-style: none;
}
a {
    outline: none;
    text-decoration: none;
}
body {
  margin: 0;
  padding: 4.8rem 2.4rem 2.4rem;
  background-color: #F6F3E9;
  color: #35322A;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
}
p {
  margin: 0 0 2.8rem 0;
}
.page {
  max-width: 544px;
  margin: 0 auto;
}
.brand {
  text-align: center;
  padding-bottom: 3.2rem;
}
.hero {
  background: #E4D1F1 url("../images/pattern.svg") no-repeat 39.2rem -4.8rem;
  border-radius: 1.6rem;
  padding: 4.8rem;
  margin-bottom: 2.4rem;
}
.extra--links {
  background: #BAE6D3 url("../images/pattern.svg") no-repeat 100% 100%;;
  border-radius: 1.6rem;
  padding: 4.8rem;
}
h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 4.4rem;
  margin: 0 0 2.4rem;
}
h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.3;
  margin: 0 0 1.2rem 0;
}
.primary__button {
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.4rem;
  display: block;
  padding: 1.6rem 2.4rem;
  border-radius: 1.2rem;
  background: #FAD75A;
  color: #35322A;
  border: 0.1rem solid #35322A;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.primary__button::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #FFF;
  transition: all .3s;
  border-radius: 1.2rem;
  z-index: -1;
}
.primary__button:hover::after {
  width: 100%;
}
.brand a:focus,
.brand a:active,
.primary__button:focus,
.primary__button:active {
  box-shadow: 0 0 0 8px rgba(50,53,42,.5);
}
@media (min-width: 996px) {
  body {
    padding: 6.4rem 4.8rem;
  }
}