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

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

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

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

.qr-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

.title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(218, 44%, 22%);
  margin-bottom: 1rem;
}

.description {
  font-size: 0.9375rem;
  color: hsl(220, 15%, 55%);
  font-weight: 400;
  line-height: 1.4;
}

/* Footer */
.attribution {
  text-align: center;
  font-size: 0.75rem;
  padding: 1rem;
  color: hsl(228, 45%, 44%);
}

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

/* Desktop View */
@media (min-width: 1024px) {
  .card {
    max-width: 375px;
    padding: 2rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .description {
    font-size: 1rem;
  }
}
