html {
  --header-height: 40px;
  /* background-color: #202438; */
  background: #202438 url(/images/stripes.png) repeat;
  background-position-y: var(--header-height);
  color: #eee;
  font-size: 1.1rem;
}

body {
  margin-top: 0;
  padding-top: var(--header-height);
}




#header {
  position: fixed;
  width: 100%;
  height: var(--header-height);
  top: 0;
  left: 0;
  background-color: #23273d;
  /* background-color: green; */
  box-shadow: #202438 0 0 5px 5px;
}

#header-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  box-shadow: #202438 0 5px 35px 45px;
  z-index: -1;
}

#header>nav {
  height: 100%;
}

#header>nav>ol {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  padding: 0 16px;
}

#header>nav li.page {
  display: block;
  background-color: #252c43;
  border-radius: 6px;
  overflow: hidden;
  font-size: 18px;
}

#header>nav li.page a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  text-decoration: none;
  color: #eee;
}

#header>nav li.page.active {
  align-self: flex-end;
  height: 37px;
  background-color: #202438;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#header>nav li.page.active a {
  pointer-events: none;
}




#footer {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  height: 24px;
  background-color: #23273d;
  padding: 12px;
  margin-top: 24px;
  box-shadow: #202438 0 0 5px 0;
  border-radius: 6px;
}

main {
  max-width: 1200px;
  margin: auto;
  background-color: #23273d;
  padding: 12px;
  margin-top: 32px;
  box-shadow: #202438 0 0 5px 0;
  border-radius: 6px;
}
