body>header {
  margin: -1.25em 0 0 0;
  padding: 1.25em 0;
  background-color: var(--theme-background-color-transparent);
  z-index: 100;
}

@media (min-width: 900px) and (min-height: 850px) {
  body>header {
    position: sticky;
    top: 0;
  }
}

body>header>div.masthead {
  grid-column-start: full-start;
  grid-column-end: main-start;
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: row;
  width: 100%;
}

body>header>div.masthead>div.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: no-wrap;
  width: 100%;
}

body>header>div.masthead h1,
body>header>div.masthead h2 {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}

body>header>div.masthead h1 {
  font-size: 1.35em;
  font-weight: 900;
}

body>header>div.masthead h2 {
  font-size: 0.75em;
  opacity: 0.5;
}

body>header>div.masthead img {
  width: 72px;
  height: 72px;
  float: left;
  margin: 0 1em 0 0;
}

body>header>nav.main-nav {
  grid-column-start: main-end;
  grid-column-end: full-end;
  width: 100%;
  height: 100%;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 900px) {
  body>header>div.masthead {
    align-self: end;
    justify-self: start;
  }

  body>header>nav.main-nav {
  }
}

@media (max-width: 900px) {
  body>header>div.masthead h2 {
    margin: 0;
    font-size: 0.65em;
    opacity: 0.5;
  }
}

body>header>nav ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  column-gap: 1.25em;
  align-items: center;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  justify-content: flex-end;
}

body>header>nav ul li .fa {
  padding-right: 0.125em;
}

body>header>nav ul li.theme-selector {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

body>footer {
  margin: 2em 0 1em 0;
  padding: 2em 0 1.5em 0;
  background-color: var(--theme-background-color-transparent);
  border-top: 2px solid var(--theme-border-color);
}

body>footer .left {
  text-align: right;
}

body>footer nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

body>footer nav ul li {
}