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

.card-container {
  background-color: white;
  border-radius: 20px;
  height: 50%;
  width: 17%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.qr-container {
  height: 60%;
  width: 100%;
}

.qr-code {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 40%;
  width: 92%;
  text-align: center;
  justify-content: space-evenly;
}

.text-container h1 {
  font-size: 18px;
  color: hsl(218, 44%, 22%);
  font-weight: 700;
  margin: 0px;
}

.text-container p {
  color: hsl(216, 15%, 48%);
  font-weight: 400;
  font-size: 13px;
  margin: 0px;
}

/* Responsive Styles */

/* Mobile Styles */
@media (max-width: 768px) {
  .card-container {
    width: 80%;
    height: 60%;
  }
  .text-container h1 {
    font-size: 25px;
  }
  .text-container p {
    font-size: 18px;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .card-container {
    width: 30%;
    height: 50%;
  }
  .text-container h1 {
    font-size: 22px;
  }
  .text-container p {
    font-size: 16px;
  }
}
