body {
  --color-text: #333;
  --color--accent: #2A9D8F;
  --color--accent-dark: #264653;
  --color--background: #e4ecef;
  background: var(--color--background);
  color: var(--color-text);
  font: 350 20px "Rubik", sans-serif;
  line-height: 1.4;
  margin: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color--accent-dark);
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: .1s color;
}

a:hover { color: var(--color--accent) }

nav {
  color: var(--color--accent-dark);
  padding: 1em 0;
  margin-bottom: 1em;
  display: flex;
  flex-direction: row;
  gap: 1em;
}

nav a {
  font-weight: 450;
  text-decoration: none;
}

nav .main { font-weight: 550 }

.spacer { flex-grow: 1 }

.wrapper {
  max-width: 35em;
  margin: 0 auto;
}

.wrapper:last-child { margin-bottom: 10em }

h1, h2, strong {
  color: var(--color--accent-dark);
  font-weight: 450;
}

header.main {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

header p {
  margin-top: 1em;
  margin-bottom: 0;
}

header h1 {
  font-size: 4em;
  font-weight: 300;
  margin: 0;
}

wf-title {
  display: flex;
  flex-direction: row;
}

.downloads {
  margin-top: 1em;
  display: flex;
  gap: 1em;
  width: 100%;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .downloads { flex-direction: column }
}
