:root {
  --text-color: #182026;
  --doc-bg: #f5f8fa;
  --dark-bg: #2c334a;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

*,
::after,
::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  text-transform: none;
  line-height: 1.28581;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--text-color);
  background-color: var(--doc-bg);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, Icons16, sans-serif;
}

a, a:hover {
  color: #168274;
  text-decoration: none;
}

a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 { font-weight: 600; }

h1 {
  color: #ff3b3f;
  font-size: 36px;
  line-height: 40px;
}

h2 {
  font-size: 28px;
  line-height: 32px;
}

h3 {
  font-size: 22px;
  line-height: 25px;
}

h4 {
  font-size: 18px;
  line-height: 21px;
}

h5 {
  font-size: 16px;
  line-height: 19px;
}

h6 {
  font-size: 14px;
  line-height: 16px;
}

p, ul {
  font-size: 16px;
  line-height: 1.5;
}

p.legal {
  font-size: 14px;
  letter-spacing: 0.3px;
  text-align: justify;
}

ul li:not(:last-child) { margin-bottom: 5px; }

.docs-app {
  display: flex;
  flex-direction: row;
  margin: auto;
  width: 1100px;
  min-height: 100vh;
}

.nav-wrapper {
  flex-grow: 0;
  width: 270px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

h1.header > * { display: inline-block; }

h1.header > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: -40px;
}

h1.header > a > svg { visibility: hidden; }

h1.header > a:hover > svg { visibility: visible; }

.cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards > img.logo {
  max-width: 450px;
  width: 80%;
  margin: 40px 0;
}

.cards > a {
  box-shadow: 0 0 0 1px rgba(16, 22, 26, .15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);
  background-color: white;
  border-radius: 3px;
  margin: 0 0 20px 0;
  padding: 20px 40px;
  transition: transform .2s cubic-bezier(.4, 1, .75, .9), box-shadow .2s cubic-bezier(.4, 1, .75, .9);
}

.cards > a:hover { box-shadow: 0 0 0 1px rgba(16, 22, 26, .1), 0 2px 4px rgba(16, 22, 26, .2), 0 8px 24px rgba(16, 22, 26, .2); }

.cards > a h4 { margin: 0; }
