@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Outfit:wght@100..900&display=swap');

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

main {
    font-family: 'Outfit', sans-serif;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;

}

.container {
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    max-width: 320px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 1.375rem;
    color: hsl(218, 44%, 22%);
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    font-size: 0.9375rem;
    color: hsl(220, 15%, 55%);
    font-weight: 400;
    padding: 0 1rem;
}

.image-qrcode {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .container {
        max-width: 375px;
    }
}