#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#root > section {
  flex: 1;
}

.footer-section:first-child {
  background-color: #d6e5f2;
  text-align: center;
}
.footer-section:last-child {
  background-color: rgb(0, 102, 153);
  color: #f5f5f5;
}
.footer-section > .container {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}
.footer-section:first-child > .container > div {
  flex: 1;
}
.footer-section > .container > div:not(:last-child) {
  margin-right: 15px;
}
.footer-section p {
  margin-bottom: 0;
}

body {
  font-family: "Open sans";
  overflow-y: scroll;
}

.sp-navbar {
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8px;
}
