@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
        font-family: 'Outfit', sans-serif;
        background-color:   hsl(212, 45%, 89%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        
}
.qr-background {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: hsl(0, 0%, 100%);
    width: 200px;
    max-width: 90%;
    height: auto;
    margin: 0;
    border-radius: 10px;
}
.qr-background img {
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 16px;

}
.qr-background h4 {
    font-size: 15px;
    padding: 0 10px;
    color: hsl(218, 44%, 22%);
    text-align: center;
}
.qr-background p {
    font-size: 11px;
    color: hsl(216, 15%, 48%);
    padding: 0 10px;
    margin: 10px 0 20px 0;
    text-align: center;
}
/* Mobile - Standard Phone */
@media (max-width: 600px) {
    body {
        padding: 0 10px;  /* Add some padding to the body for smaller screens */
    }

    .qr-background {
        width: 80%;  /* Take up more of the screen width */
        padding: 16px;  /* Slightly reduced padding */
        margin: auto;  /* Center the QR code background */
    }

    .qr-background h4 {
        font-size: 14px;  /* Smaller font for mobile */
    }

    .qr-background p {
        font-size: 11px;  /* Smaller font for better fitting */
    }
}

/* Extra Small Phones - Landscape or Smaller Phones */
@media (max-width: 400px) {
    .qr-background {
        width: 90%;  /* Make it a bit wider for extra small screens */
        padding: 12px;  /* Even less padding for tight screens */
    }

    .qr-background h4 {
        font-size: 13px;  /* Adjust text size */
    }

    .qr-background p {
        font-size: 10px;  /* Adjust text size */
    }
}
