@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
}
.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container .sub {
    width: 330px;
    height: 500px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 18px;
}
.qrcode {
    width: 90%;
    height: 300px;
    margin: 20px auto;
    border-radius: 12px;
    background-image: url(./images/image-qr-code.png);
    background-size: cover;
}
.text {
    width: 80%;
    margin: 0 auto;
}
.text h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
}
.text p {
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    color: hsl(220, 15%, 55%);
}