.headerContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1032px;
  min-width: 320px;
  padding: 20px;
  background-color: inherit;
}

.mainHeading {
  font-family: 'Inter', sans-serif;
  font-size: 54px;
  line-height: 74.25px;
  letter-spacing: 0.6px;
  color: #262f40;
  text-align: center;
  margin-bottom: 30px;
}

.regularText {
  font-weight: 400;
}

.boldText {
  font-weight: 700;
}

.subHeading {
  font-family: 'Inter', sans-serif;
  font-size: 54px;
  line-height: 74.25px;
  letter-spacing: 0.6px;
  color: #262f40;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .mainHeading {
    font-size: 36px;
    line-height: 48px;
  }

  .subHeading {
    font-size: 36px;
    line-height: 48px;
  }
}

