@import url("https://fonts.googleapis.com/css?family=DM+Sans:100,300,400,500,700,900&display=swap");

html {
  scroll-behavior: smooth;
  font-display: swap;
}

ol {
  padding-left: 24px;
  counter-reset: list;
}
ol > li {
  list-style: none;
}
ol[type="a"] > li:before {
  content: counter(list, lower-alpha) ") ";
  counter-increment: list;
}

:root {
  --bg-color: #ffffff;
  --bg-secondary-color: #f3f3f6;
  --color-primary: #e9b44c;
  --color-lightGrey: #d2d6dd;
  --color-grey: #747681;
  --color-darkGrey: #3f4144;
  --color-error: #d32d10;
  --color-success: #40ba66;
  --grid-maxWidth: 90rem;
  --grid-gutter: 2rem;
  --font-size: 1.6rem;
  --font-color: #000;
  --font-family-sans: "DM Sans", sans-serif;
  --font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
}

.container {
  height: 100%;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content {
  padding: 16px 0;
}

.tabs a,
.tabs a.active,
.tabs a:hover {
  border-bottom-width: 4px;
}

.tab {
  cursor: pointer;
}

.tab h3 {
  margin-top: 0;
  margin-bottom: 0;
}

.tab-content {
  padding: 16px 0;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.footer a {
  color: var(--color-grey);
  font-size: 14px;
}

.badges {
  width: 100%;
  padding: 8px 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge,
.badge img {
  height: 64px;
}

.display-none {
  display: none;
}
