@font-face {
  font-family: 'Nunito_Sans', sans-serif;
  src: url('/fonts/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC\,opsz\,wdth\,wght.ttf') format('woff'); /* WOFF format */
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Nunito_Sans', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: auto 1fr auto; /* Header, Content, Footer */
  min-height: 100vh;
}

#header-section, #main-content-section, #footer-section {
  text-align: center;
}

#header-section
{
  height: 700px;
  background-color: #4A638E;
  display: flex;
  justify-content: center; /* Horizontally center align items */
  align-items: center; /* Vertically center align items */
  font-size: 45px;
  color: #fff;
}

#main-content-section
{
  text-align: left;
}

.content-container
{
  display: block;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 0;
}


@media(max-width: 1205px)
{
  
}

