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

body {
  width: 100%;
  height: 100vh;
  background-color: hsl(212, 45%, 89%);

  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400, 700;
  font-style: normal;

  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-card {
  width: clamp(230px,100%,300px);
  background-color: #fff;
  margin: 0 auto;
  padding: 15px;
  border-radius: 15px;
  .qr-img {
   width: clamp(200px,100%,300px);
    border-radius: inherit;
  }

  .heading{
    text-align:center;
    color: hsl(218, 44%, 22%);
    font-size: 20px;
    margin-top: 15px;
  }

  .details{
    font-size: 15px;
    text-align:center;
    margin-top: 10px;
    color: hsl(216, 15%, 48%);
  }
}
