body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: hsl(212, 45%, 89%);
  font-family: "Outfit", sans-serif;
}

.card {
  background-color: white;
  padding: 16px;
  border-radius: 16px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}

.qr-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
}

h1 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

p {
  font-size: 15px;
  margin-bottom: 16px;
}

.attribution {
  text-align: center;
  font-size: 13px;
  color: hsl(220, 15%, 55%);
}

.attribution a {
  color: hsl(228, 45%, 44%);
  text-decoration: none;
}

.attribution a:hover {
  text-decoration: underline;
}

/* Desktop adjustments */
@media screen and (min-width: 1024px) {
  .card {
    max-width: 400px;
    padding: 32px;
  }

  h1 {
    font-size: 16px;
  }

  p {
    font-size: 18px;
  }

  .qr-image {
    width: 100%;
    max-width: 400px;
  }
}
