body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    background-color: hsl(212, 45%, 89%);
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
  }
  
  .card {
    background-color: hsl(0, 0%, 100%);
    padding: 1em;
    border-radius: 1rem;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
  }
  
  .qr-image {
    width: 100%;
    border-radius: 0.75rem;
    display: block;
  }
  
  .card h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    margin: 1em 0 0.5em;
  }

  .card p {
    font-size: 1em;
    font-weight: 400;
    color: hsl(216, 15%, 48%);
    padding: 0 1em;
    margin-bottom: 1em;
  }
  