*{
    box-sizing: content-box;
    margin: 0;
    padding: 0;
}
body{
    background-color: rgb(213, 225,239);
    font-family: 'Outfit', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.card{
    background-color: white;
    width: 100%;
    max-width: 320px;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.qr-img{
    width: 100%;
    border-radius: 12px;
}
h2{
    font-size: 20px;
    color: #1f3251;
    margin: 20px 0 10px 0;
    font-weight: 700;  
}
p{
    font-size: 15px;
    color: #7b879d;
    padding: 0px 20px;
    line-height: 1.4;
    padding-bottom: px;
}