:root {
  --tiny-breakpoint: 600px;
  --mobile-breakpoint: 850px;
  --desktop-breakpoint: 1440px;
  --blue: #2B285E;
  --yellow: #FDB738;
  --yellow-light: #FFEFD3;
  --black: #1A1A1A;
  --grey-light: rgb(243, 242, 251);
  --charcoal: #636363;
  --grad-yellow-h: linear-gradient(135deg, rgba(255,239,211,1) 0%, rgba(255,255,255,1) 100%);
  --grad-yellow-v: linear-gradient(180deg, rgba(255,239,211,1) 0%, rgba(255,255,255,1) 100%);
  --grad-blue-v: linear-gradient(180deg, rgba(243,242,251,1) 30%, rgba(255,255,255,1) 100%);
  --grad-hero: linear-gradient(160deg, rgba(43,40,94,0.11948529411764708) 40%, rgba(43,40,94,1) 100%);
}

.title-bar {
  text-align: center;
  padding: 40px 0;
  background: var(--yellow);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 40px;
}
.title-bar h1 {
  color: var(--blue);
  margin-top: 0;
  margin-bottom: 0;
}