
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: hsl(212, 45%, 89%);
    width: 100vw;
    height: 100vh;
}
.container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.qr-code-card{
    max-width: 300px;
    padding: 20px;
    border-radius: 20px;
    background-color: hsl(0, 0%, 100%);
}
.qr-code-image{
    width: 100%;
    img{
        width: 100%;
        border-radius: 12px;
    }
}
.qr-code-description{
   
    padding: 10px 25px;
    
    h2{
        color:hsl(218, 44%, 22%) ;
        font-size: 21px;
        text-align: center;
    }
    p{
        color: hsl(216, 15%, 48%);
        font-weight: 400;
        font-size: 15px;
        
        text-align: center;
    }
}
footer{
    margin-top: 40px ;
}
.attribution{
    font-size: 13px;
    
    a {
        color: hsl(228, 45%, 44%);
    }
}