@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  /* colors */
  --color-white: hsl(0, 0%, 100%);
  --slate-300: hsl(212, 45%, 89%);
  --slate-500: hsl(216, 15%, 48%);
  --slate-900: hsl(218, 44%, 22%);
  --blue-600: #2c7dfa;
  --blue-500: #3685ff;

  /* spacing */
  --space-500: 40px;
  --space-300: 24px;
  --space-200: 16px;
  --qr-size: 288px;

  /* font */
  --body-fs: 15px;
  --font-family: "Outfit", sans-serif;
  --weight-400: 400;
  --weight-700: 700;
}

.margin-top-200 {
  margin-block-start: var(--space-200);
}

.body-custom {
  font-family: var(--font-family);
  background-color: var(--slate-300);
}

.attribution {
  font-size: 0.7em;
  text-align: center;
}
.attribution a {
  color: var(--slate-900);
}

.text-preset-1 {
  font-weight: var(--weight-700);
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: 0px;
}

.text-preset-2 {
  font-weight: var(--weight-400);
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: 0.2px;
}

.card.custom-card {
  border-radius: 20px;
  background: var(--color-white, #fff);
  box-shadow: 0 25px 25px 0 rgba(0, 0, 0, 0.05);
  padding: var(--space-200);
  padding-block-end: var(--space-500);
  width: min-content;
}

.card img {
  width: var(--qr-size);
  height: var(--qr-size);
  border-radius: 10px;
  margin-block-end: var(--space-300);
}
