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

.mainHeading {
  font-family: 'Droid Serif', serif;
  font-size: 2.25em;
  line-height:normal;
  letter-spacing: 0.6px;
  color: #262f40;
  text-align: center;
  margin-bottom: 1.5rem;
}

.regularText {
  font-weight: 400;
}

.boldText {
  font-weight: 700;
}

.subHeading {
  font-family: 'Droid Serif', serif;
    font-size: 2.25em;
  line-height: normal;
  letter-spacing: 0.6px;
  color: #262f40;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width:992px){
  .headerContainer {
   
    width: 100%;
    max-width: 100%;
    min-width: 320px;
   
  }
}
@media (max-width: 768px) {
  .mainHeading {
    font-size: 28px;
    line-height: 38px;
    padding: 10px;
  }

  .subHeading  {
    font-size: 28px;
    line-height: 37px;
}
}

