@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
* {
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: hsl(212, 45%, 89%);

}
.container {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 25px;
    width: 320px;

}
.qr-image {
    width: 280px;
    height: 280px;
    border-radius: 25px;
    margin: 20px;
}

div h2, p {
    font-family: outfit;
    text-align: center;
}
h2 {
    margin: 0 20px 0 20px;
    font-weight: 700;
}
p {
    margin: 20px;
    font-weight: 400;
}