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

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

/* Card Styles */
.card {
  background-color: white;
  border-radius: 20px;
  padding: 16px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

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