body{
    background-color: hsl(212, 45%, 89%);
    height: 100%;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 94vh;
}

.card{
    background-color: white;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 32vh;
    height: 50vh;
    padding: 1rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.qr-code img{
    width: 100%;
    display: block;
    border-radius: 0.75rem;

}

.first-line{
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 17px;
}

.second-line{
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: 13px;
}

.attribution { 
    font-size: 11px; 
    text-align: center; 
    position: relative;
}
.attribution a { 
    color: hsl(228, 45%, 44%); 
}

/*@media (max-width: 375px) {
    .card {
      max-width: 90%;
      padding: 1rem;
    }
  
    body {
      padding: 1rem;
    }
}*/

@media (max-width: 480px) {
    .card {
      width: 70%;
      height: 72%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 1.25rem;
    }
  
    .container {
      padding: 0.75rem;
    }

    .first-line{
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        text-align: center;
        font-size: 21px;
    }
    
    .second-line{
        font-family: 'Outfit', sans-serif;
        font-weight: 400;
        text-align: center;
        font-size: 18px;
    }
  }
