/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Outfit', sans-serif;
  background-color: hsl(212, 45%, 89%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Main container */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Card */
.card {
  background-color: hsl(0, 0%, 100%);
  padding: 16px;
  border-radius: 15px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* QR Image */
.qr-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Heading */
.card h1 {
  font-size: 1.3rem;
  font-weight: 700;
  color: hsl(218, 44%, 22%);
  margin-bottom: 15px;
}

/* Paragraph */
.card p {
  font-size: 15px;
  font-weight: 400;
  color: hsl(216, 15%, 48%);
}

/* Attribution */
.attribution {
  font-size: 0.8rem;
  text-align: center;
  color: hsl(216, 15%, 48%);
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
