body {
  background-color: #38437E;
  color: white;
  height: 100vh;
}

.body-container {
  display: flex;
  flex-flow: column;
  height: 100%;
}

.header-bar {
  width: 100%;
  height: 80px;
  background-color: #6371BD;
}

.header-bar a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin: 18px 15px;
}

.body-content {
  flex-grow: 1;
}

.footer-bar {
  width: 100%;
  min-height: 200px;
  height: 200px;
  background-color: #6371BD;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 0 50px;
}

.footer-bar .footer-left {
}
.footer-bar .footer-right {
  text-align: right;
}

.footer-bar a {
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.btn-cta {
  background-color: #F4E23F;
  color: black;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto";
  padding: 7px 20px;
}
.btn-cta:hover {
  background-color: #D0C24D;
  color: black;
}
