@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

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


body {
    background-color: hsl(212, 45%, 89%);
    font-family: "Outfit", sans-serif;
    min-height: 100vh;

}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card {
    margin: auto;
    background-color: hsl(0, 0%, 100%);
    text-align: center;
    padding: 1.5rem;
    border-radius: 20px;
    max-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;

}

.card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

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

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

p {
    font-size: 1rem;
    color: hsl(216, 15%, 48%);
    margin-bottom: 0;
}

@media (max-width: 375px) {
    .card {
        padding: 2rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 1440px) {
    .card {
        padding: 2rem;
        font-size: 1.2rem;
    }
}