* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  --slate-900: #1F314F;
  --slate-500: #68778D;
  --slate-300: #D5E1EF;
  --white: #fff;
  --preset-1-weight: 700;
  --preset-1-height: 120%;
  --preset-1-spacing: 0px;
  --preset-1-size: 22px;
  --preset-2: 400;
  --preset-2-height: 140%;
  --preset-2-spacing: 0.2px;
  --preset-2-size: 15px;
  --font: "Outfit", sans-serif;
  --spacing-500: 40px;
  --spacing-300: 24px;
  --spacing-200: 16px;
  --radius: 20px;
}

body {
  background-color: var(--slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.text-preset-1 {
  font-family: var(--font);
  font-weight: var(--preset-1-weight);
  line-height: var(--preset-1-height);
  letter-spacing: var(--preset-1-spacing);
  color: var(--slate-900);
  font-size: var(--preset-1-size);
}
.text-preset-2 {
  font-family: var(--font);
  font-weight: var(--preset-2);
  line-height: var(--preset-2-height);
  letter-spacing: var(--preset-2-spacing);
  color: var(--slate-500);
  font-size: var(--preset-2-size);
  text-wrap-style: balance;
}

.qr {
    width: 288px;
}

.card {
  border-radius: var(--radius);
  max-width: 320px;
  height: fit-content;
  background-color: var(--white);
  padding: var(--spacing-200);
  padding-bottom: var(--spacing-500);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-300);
}

.text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-200);
  text-align: center;
}

/* When screen <= 375px */
@media screen and (max-width: 375px) {
    
}
