:root {
  --header-color: black;
  --openapi-bg: #4B8EBB;
  --openapi-fg: #386b8c;
  --scalar-custom-header-height: 50px;
}

body {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
}

.flex-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
}

.flex-item:nth-child(1) {
  order: 0;
  flex: 0 1 auto;
  align-self: center;
}

.flex-item:nth-child(2) {
  order: 0;
  flex: 0 1 auto;
  align-self: center;
}

header {
  width: 100%;
  color: White;
  vertical-align: middle;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--scalar-custom-header-height);
  position: -webkit-sticky;
  position: sticky;
  background: radial-gradient(circle at 50% 20%, rgba(50, 70, 200, 0.45) 0%, rgba(30, 50, 150, 0.35) 25%, rgba(10, 20, 90, 0.25) 50%, rgba(5, 10, 70, 0.15) 70%, transparent 90%, transparent 100%), radial-gradient(circle at 60% 45%, rgba(70, 100, 255, 0.25) 0%, rgba(40, 60, 180, 0.20) 40%, rgba(15, 25, 110, 0.15) 70%, transparent 90%, transparent 100%), linear-gradient(to bottom, #050052 0%, #050052 90%) !important;
  background-blend-mode: screen, screen, normal;
}

header .logo {
  height: calc(var(--scalar-custom-header-height) - 10px);
  filter: brightness(40);
  margin-left: 10px;
}

header .list-item {
  display: inline-block;
}

header .list-item a {
  text-decoration: none;
  padding: 5px 10px;
  color: White;
}

header .list-item a:hover,
header .list-item.active a {
  text-decoration: underline;
}

.introduction-section>div:first-child>div:last-child {
  display: inline;
}

.logo-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.logo-footer a {
  flex: 1 1;
  object-fit: cover;
}