* {
    box-sizing: border-box;
}
html, body {
    min-height: 100vh;
    margin: 0; 
}
body {
    background-color: #d5e1ef;
}
main {
    min-height: 100vh;
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#qrcard {
    padding: 16px 16px 40px 16px;
    width: 320px;
    height: 499px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    background-color: white;
    text-align: center;

    border-radius: 20px;

    font-family: "Outfit", sans-serif;

    box-shadow: 0px 25px 25px rgba(0, 0 ,0 , 0.0477);
}

#qrcard h1 {
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 120%;
    font-weight: 700;
    color: #1f314f;

    margin: 0px;
}

#qrcard p {
    font-size: 15px;
    letter-spacing: 0.2px;
    line-height: 140%;
    font-weight: 400;
    color: #68778d;

    margin: 16px 0px 0px 0px;
}

#qrcard img {
    border-radius: 10px;
}

#qrcardtext {
    margin-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
}