body {
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  align-items: center;
  flex: none;
  background-color: #4FA1A7;
  color: white;
  padding: 10px;
  flex-wrap: wrap;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  margin-inline-end: 50px;
}
.logo {
  height: 48px;
  fill: currentColor;
  margin-inline-end: 10px;
}
.wordmark {
  font-size: 1.5em;
}
.links a {
  padding-block: 0.1em;
  padding-inline: 0.2em;
  border-radius: 5px;
}
.search-btn {
  block-size: 36px;
  inline-size: 36px;
  border-radius: 50%;
  padding: 0;
}
.links a.current {
  background: rgba(0, 0, 0, 0.5);
}
.links a:hover,
.search-btn:hover {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
}

.content {
  flex: auto;
}

.footer {
  flex: none;
  background-color: #212121;
  color: white;
  padding: 10px;
}
.copyright {
  margin: 0;
}

.firefox-warning {
  background-color: #ff8300;
  padding: 10px;
  color: white;
}
.firefox-warning a {
  color: black;
}
.firefox-warning a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
