*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 3rem;
    box-shadow: 0 0 15px 0 gray;
    width: calc(300px + 3rem);
    padding: 1.5rem;
    position: absolute;
    top: 45%;
    left: 50%;
    translate: -50% -50%;

    background-image: linear-gradient(135deg, #2196f3 , white , white , #00bcd4);
    /* background-image: linear-gradient(315deg, #00bcd4 , white , white); */
}

#QR img{
    border-radius: 1.5rem;
    max-width: 300px;
    pointer-events: none;
}

.text-wrap{
    text-wrap: wrap;
}
.black-50{
    color: rgba(0, 0, 0, 0.5);
}
.samller{
    font-size: .8rem;
}
.bigger{
    font-size: 1.5rem;
}
.bold{
    font-weight: 900;
}
.bolder{
    font-weight: bolder;
}
.text-center{
    text-align: center;
}
.my{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.mb{
    margin-bottom: 1rem;
}

@media (max-width: 400px){
    .container{
        width: 256px;
        padding: 1rem;
        border-radius: 2rem;
    }
    #QR img{
        border-radius: 1rem;
        width: calc(256px - 2rem);
    }
    .text-center{
        text-wrap: balance;
    }
}