/* 
main color
#B9B1C5 /or maybe
#bdc5b1

tints
#dcd8e2

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 /  20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

WHITESPACE
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-site: 62.5%;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #222;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6.4rem;
}

.hero-section {
  /* background-color: #e3e0e8; */
  background-color: #e5e8e0;
  padding: 6.4rem 6.4rem;
}

.hero-image {
  width: 100%;
  /* box-shadow: 0 0 5px 0 #777; */
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 3.2rem;
  letter-spacing: -0.7px;
}

.hero-description {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}
