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

body {
    font-family: Outfit, Helvetica, sans-serif;
    background-color: var(--light-gray);
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 15px;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    border-radius: 10px;
    background-color: var(--white);
    padding: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.qr__container img {
    width: 100%;
    border-radius: 8px;
}

.text__heading {
    font-size: 20px;
    color: var(--dark-blue);
}

.text__body {
    color: var(--gray-blue);
}