*{
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;
}
body{
    background-color: hsl(212, 45%, 89%);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    height: 100vh;
}
.card{
    width: 40vh;
    height: 65vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: auto;
    align-items: center;
    border-radius: 14px;
    box-shadow: 2px 2px 15px rgba(128, 128, 128, 0.826);
}
.qr{
    width: 100%;
    height: 60%;
    border-radius: 14px;
}
img{
    transform: scale(0.85);
    width: 100%;
    height: 100%;
    border-radius: 14px;
}
.heading{
    text-align: center;
}
.card-lower{
    margin: 0 1.5em;
    transform: scale(0.95);
}
.intro{
    font-size: smaller;
    text-align: center;
    margin-top: 2.5em;
    color: hsl(216, 15%, 48%);
}

