@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
body {
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
}    

.bg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    background-color: hsl(212, 45%, 89%);
}

.card {
    width: 250px;
    background-color: hsl(0, 0%, 100%);
    padding: 15px;
    text-align: center;
    border-radius: 20px;
    margin: 40px;
}

.qr-image {
    width: 100%;
    border-radius: 10px;
}

p {
    font-family: Outfit;
    font-weight: 400;
    font-size: 15px;
    color: hsl(220, 15%, 55%);
}

h1 {
    font-family: Outfit;
    font-weight: 700;
    font-size: 20px;
    color: hsl(218, 44%, 22%);
}