* {
  box-sizing: border-box;
}


body {
  background-color:  grey;
  margin:0px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 50px,
    transparent 1px,
    transparent 40px
  );
}

.card {
  background-color: #D5E1EF;
  width: 100%;
  height: 100vh;
  display:flex;
  align-items:center;
  justify-content: center;
}

.qr-component {
  border-radius: 16px;
  background-color: #FFFFFF;
  width: 100%;
  max-width: 320px;
  max-height: 499px;
  text-align: center;
  padding: 16px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  font-family: 'Outfit', sans-serif;
}

.qr-component img {
  display: block;
  width: 100%;
  border-radius:12px;
}

.qr-text {
  display:flex;
  flex-direction: column;
  padding-left:16px;
  padding-right: 16px;
  margin-top:24px;
  gap:16px;
  
}

.qr-component h1 {
  color: #1F314F;
  font-weight: bold;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0px;
  margin:0;
}

.qr-component p {
  text-align: center;
  max-width: 256px;
  color: #68778D;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: 0.2px;
  margin:0 auto;
}