* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

.container {
  max-width: 130rem;
  margin: 0 auto;
}
.grid {
  display: grid;
  /* column-gap: 4.4rem; */
}
.grid--2cols {
  grid-template-columns: repeat(2, 1fr);
}
.grid--4cols {
  grid-template-columns: repeat(4, 1fr);
}
.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #4e1a1a;
}
.heading-primary {
  font-size: 6.4rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 5.4rem;
  font-family: Lobster Two;
  font-style: italic;
}

.heading-secondary {
  font-size: 4.8rem;
  letter-spacing: -0.2px;
  font-family: Lobster Two;
  margin-bottom: 3.2rem;
  color: #4e1a1add;
}
