@import url('https://fonts.google.com/specimen/Outfit');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: "Parkinsans", sans-serif;
    
}
body{
    background-color: hsl(220, 15%, 55%, 0.3);
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
 
}
.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;;
    border-radius: 10px;
    padding: 10px 5px;
    background-color: hsl(0, 0%, 100%) ;
    width: 320px;
}
.QR img{
    width: 300px;
     border-radius: 10px;
}
.text{
    text-align: center;
    padding: 0px 30px;
}
.text h2{
    color: hsl(218, 44%, 22%);
    
}
.text p{
    color: hsl(220, 15%, 55%);
}
 .attribution {
      margin-top: 5px;
        font-size: 11px;
        text-align: center;
      }
      .attribution a {
        color: hsl(228, 45%, 44%);
      }