@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --bgcolor: #D5E1EF;
}

* {
    box-sizing: border-box;
}

body {
    max-width: 1440px;
    height: 760px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: var(--bgcolor);
    font-family: "Outfit", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 16px;
    color: #1F314F;
    font-weight: 900;
}

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

.main {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.card {
    margin: auto;
    background-color: #ffffff;
    width: 100%;
    max-width: 320px;
    height: 500px;
    margin-top: 120px;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0px 10px 45px 0.1px #c6ccd6;
}

.qr-code img {
    width: 100%;
    max-width: 288px;
    height: auto;
    border-radius: 10px;
}

.qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
}

.text {
    display: block;
    text-align: center;
    padding: 16px;
    margin-bottom: 40px;
}


@media (min-width: 768px) {

    body {
        padding: 16px;
    }

    .card {
        width: 100%;
        margin: 0;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    img {
        max-width: 260px;
    }
}