*{
    margin: 0;
    padding:0;
}

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
  }
  

  
  body {
    /* 3. Add accessible line-height */
    line-height: 1.5;
    /* 4. Improve text rendering */
    -webkit-font-smoothing: antialiased;
  }
  
  /* 5. Improve media defaults */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  /* 6. Inherit fonts for form controls */
  input, button, textarea, select {
    font: inherit;
  }
  
  /* 7. Avoid text overflows */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  
  /* 8. Improve line wrapping */
  p {
    text-wrap: pretty;
  }

  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
  }
  



:root{
    --clr-White: hsl(0, 0%, 100%);
    --clr-Slate-400: hsl(212, 45%, 89%);
    --clr-Slate-500: hsl(216, 15%, 48%);
    --clr-Slate-900: hsl(218, 44%, 22%);

    --fs-Weight-regular: 400;
    --fw-Weight-accent:700;

    --fs-size-regular:15px;

    --ff-family-regular:"Outfit", serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height:100vh;
    background-color: var(--clr-Slate-400);
    font-family: var(--ff-family-regular);
    font-size:var(--fs-size-regular);
}

.wrapper{
    background-color: var(--clr-White);
    max-width:19.75rem;
    text-align: center;
    padding: 1rem 1rem 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 1rem;
}
.qr_image{
    border-radius: 1rem;
}

.content{
    display: flex;
    flex-direction: column;
    gap:1rem;
}

.content__header{
    color: var(--clr-Slate-900);
    font-weight: var(--fw-Weight-accent);
    font-size:1.4rem;
    line-height: 1.1;
    /* padding:0 0.1rem; */
}

.content__caption{
    color: var(--clr-Slate-500);
    line-height:1.3;
    padding: 0 1rem;
}