* {
    border: 0;
    margin: 0;
    box-sizing: border-box;
}

body,
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    background-color: hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
    height: 100vh;
}

.container {
    width: 100%;
    padding: 2rem;
}

.qrcontainer {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 15px;
    padding: 1rem;
    width: 100%;
    max-width: 320px;
    text-align: center;
}

img {
    width: 100%;
    border-radius: 10px;
}

h3 {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 20px 0;
    line-height: 1.5;
    color: #1C2639;
    padding: 0 1rem;
}

span {
    color: gray;
    font-size: .9rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
    line-height: 1.5;
}