:root{
    /* colors */
    --white: #FFF;
    --grey: #7D889E;
    --light-grey: #D5E1EF;
    --dark-blue: #1F314F;
}

*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing:antialiased;
}
img{
    display: block;
    max-width: 100%;
}
p,h1{
    overflow-wrap: break-word;
}
main{
    height: 100%;
}
.wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--light-grey);
    min-height: 100%;
}

/* component section */

.qr-component{
    max-width: 320px;
    padding: 16px 16px 40px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 25px 0 rgba(0,0,0,0.05);

}
.qr-image img{
    border-radius: 10px;
    margin-bottom: 24px;
}

.heading{
    font-size: 22px;
    line-height: normal;
    color: var(--dark-blue);
    margin-bottom: 16px;
    text-align: center;
    padding:0 16px;
    
}
.desc{
    font-size: 15px;
    line-height: normal;
    letter-spacing: 0.1px;
    color: var(--grey);
    text-align: center;
    padding: 0 16px;
}