* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    background-color: #fff;
    width: 320px;
    height: 499px;
    border-radius: 20px;
    padding: 16px 16px 40px 16px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .1);
}

.qr img {
    width: 288px;
    height: 288px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.text {
    text-align: center;
    width: 288px;
    height: 131px;
    padding: 0 16px;
}

.text h1 {
    font-size: 22px;
    line-height: 120%;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    margin-bottom: 16px;
}

.text p {
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
    font-weight: 400;
    color: hsl(216, 15%, 48%);
}
