 @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

    html {
      height: 100%;
    }

    body{
      background-color: hsl(212, 45%, 89%);
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card {
      display: grid;
      background-color: white;
      border-radius: 10px;
    }
     
    .qrImage {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 5px;
      padding: 5px;
    }

    img {
      width: 100%;
      height: 100%;
      border-radius: 8px;
    }

    .qrText {
      font-family: "Outfit", sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: hsl(216, 15%, 48%);
      text-align: center;
      width: auto;
      margin: 10px;
    }

    .qrTitle {
      font-weight: 700;
      color: hsl(218, 44%, 22%);
    }


    @media (min-width: 375px){
       .card {
        width: 15em;
        height: 25rem;
      }
      
      img {
        width: 100%;
        height: 100%;
      }
    }