* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D5E1EF;
}

.qrCodeCard {
    width: 320px;
    min-width: 320px;
    height: 500px;
    min-height: 500px;
    border-radius: 20px;
    background-color: white;
    padding: 16px 16px 40px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.qrCodeImg {
    width: 288px;
    height: 288px;
    border-radius: 10px;
    background-color: #2C7DFA;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qrCode {
    width: auto;
    height: 160px;
}

.qrCodeCardText {
    width: 288px;
    height: 131px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* padding: 0 16px; */
}

.qrCodeCardTextTitle {
    text-align: center;
    font-size: 22px;
    color: #1F314F;
    line-height: 120%;
    letter-spacing: 0px;
}

.qrCodeCardTextP {
    text-align: center;
    color: #68778D;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
}