html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ededed;
  color: #424242;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  padding-top: 80px;
}

header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-left {
  background-color: white;
  padding: 0.5em 2em;
  display: flex;
  align-items: center;
}

.header-right {
  background-color: #004e92;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  height: 60px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

nav a {
  margin: 0 0.8em;
  text-decoration: none;
  color: white;
  font-weight: bold;
  white-space: nowrap;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
}

.section {
  padding: 1em 2em;
}

footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 1em;
  margin-top: 4em;
}