* {
  --blueberry: #357af6;
  --blueclouds: #84b0ff;
  --bluesky: #5d97fe;
  --dark: #101116;
  --dusk: #20222d;
  --gold: #ffca43;
  --gray: #363845;
  --green: #43ffa2;
  --green-dark: hsl(150, 50%, 63%);
  --purple: #8a35f6;
  --light: #f2f2f2;
  --white: #fafafa;
}

a {
  color: var(--dark);
  font-weight: bold;
  text-decoration: none;
}

a.link {
  color: var(--green);
  font-weight: bold;
  font-size: 1rem;
}

a.link.secondary {
  color: var(--dark);
}

body {
  background-color: var(--light);
  color: var(--dark);
  font-family: "Metropolis";
  font-weight: 100;
  font-style: normal;
}

button,
div.button,
form > input[type="submit"] {
  padding: 12px 36px;
  border: 0;
  border-radius: 8px;
  background-color: var(--green);
  color: var(--dark);
  font-weight: 900;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
}

button[disabled],
form > input[type="submit"][disabled] {
  background-color: var(--green-dark);
  cursor: not-allowed;
}

div.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

div.center > * {
  text-align: center;
}

div.dark,
div.dark a {
  color: var(--white);
}

div.flex-c {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

div.flex-r {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

div.icon {
  width: 2rem;
  height: 2rem;
}

div.icon.small {
  width: 1rem;
  height: 1rem;
}

div.pointer {
  cursor: pointer;
}

div.section {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

div.section > div.content {
  width: 100vw;
  max-width: 1440px;
  padding: 42px 16px;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

div.section.light {
  background-color: var(--white);
}

div.vbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

div.w {
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

form > fieldset {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 0;
}

form > fieldset > input,
form > fieldset > textarea {
  padding: 12px;
  border: 0;
  border-radius: 8px;
}

form > fieldset > input.error,
form > fieldset > textarea.error {
  border: 1px solid red;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2rem;
  font-weight: 900;
}

h3 {
  font-size: 1.5rem;
  font-weight: 900;
}

h4 {
  font-size: 1rem;
  font-weight: 900;
}

h1:not(:first-child),
h2:not(:first-child),
h3:not(:first-child),
h4:not(:first-child) {
  margin-top: 16px;
}

h1 + *,
h2 + *,
h3 + *,
h4 + * {
  margin-top: 32px;
}

h1 + p,
h2 + p,
h3 + p,
h4 + p {
  margin-top: 8px;
}

img.black {
  filter: brightness(0) saturate(100%) invert(3%) sepia(4%) saturate(4593%) hue-rotate(192deg) brightness(97%)
    contrast(93%);
}

img.blue {
  filter: brightness(0) saturate(100%) invert(51%) sepia(69%) saturate(5872%) hue-rotate(208deg) brightness(103%)
    contrast(93%);
}

img.w50 {
  max-width: 50%;
}

img.white {
  filter: brightness(0) saturate(100%) invert(99%) sepia(44%) saturate(7%) hue-rotate(188deg) brightness(113%)
    contrast(96%);
}

p {
  max-width: 60ch;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: normal;
}

p.error {
  color: red;
}

p + a > *,
p + button,
p + div.button,
p + form > input[type="submit"] {
  margin-top: 48px;
}

p + p {
  margin-top: 16px;
}

@media screen and (min-width: 1200px) {
  div.section {
    margin-top: 64px;
  }

  div.section > div.content {
    padding: 40px 112px;
  }

  div.vbox {
    flex-direction: row;
    gap: 120px;
  }

  div.vbox > * {
    flex: 1;
  }

  div.wmc-d {
    width: max-content;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1rem;
  }
}
