/* 🌍 Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
}

/* 🖼️ Centering the Card */
body {
  width: 100vw;
  height: 100vh;
  background-color: #d5e1ef;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 📦 Card Styles */
.card {
  width: 90%;
  max-width: 320px;
  background-color: white;
  box-shadow: 1px 10px 24px 0px rgba(66, 68, 90, 0.12);
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
}

/* 🖼️ QR Code Image */
.card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
  padding: 16px;
}

/* 📝 Content */
.content {
  padding: 16px;
}

.content h3 {
  font-size: 1.2rem;
  padding: 0 5px 10px;
}

.content p {
  font-size: 0.9rem;
  color: #828a96;
  padding: 0 20px;
}

/* 📱 Tablet and Above (min-width: 600px) */
@media (min-width: 600px) {
  .content h3 {
    font-size: 1.4rem;
  }

  .content p {
    font-size: 1rem;
  }
}
