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

:root {
    --white: hsl(0, 0%, 100%);
    --light-gray: hsl(212, 45%, 89%);
    --grayish-blue: hsl(220, 15%, 55%);
    --dark-blue: hsl(218, 44%, 22%);
}

body {
    background-color: var(--light-gray);
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

h2.message {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 0px;
}

p {
    color: gray;
}

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card {
    background-color: var(--white);
    padding: 1em;
    border-radius: 1em;
    width: 300px;
}

#qr-code {
    width: 100%;
    border-radius: 5%;
}

.flex {
    display: flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-body {
    padding: 0.75em;
    text-align: center;
}