@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

body {
    font-family: 'Outfit', sans-serif; /*Used outfit font for body text */
    font-size: 15px;
    margin: 0;
    padding: 0;
    background-color: hsl(212, 45%, 89%);
    color: hsl(218, 44%, 22%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* White container */
.white-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 100%; /* Increased container width for better readability */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* QR Code image*/
.qr-code img {
    width: 100%;
    border-radius: 10px;
}

/* Headline and dscription */
.intro-one {
    font-size: 18px;
    font-weight: 700;
    color: hsl(216, 15%, 48%);
    margin-top: 20px;
}

.intro-two {
    font-size: 11px;
    color: hsl(216, 15%, 48%);
    margin-top: 10px;
}

/* Attribute styles */
.attribute {
    font-size: 10px;
    text-align: center;
    margin-top: 20px;
}

.attribute a {
    color: hsl(216, 15%, 48%);
}

@media (min-width: 375px) {
    /* Mobile styling for .white-container */
    .white-container{
        width: 375px;
    }
    
}

@media (min-width: 1440px) {
    /*  Desktop layout */
    body {
        font-size: 16px;
    }

    .white-container{
        width: 450px; /* increase container width for desktop */
    }

    .intro-one{
        font-size: 24px;
    }

    .intro-two{
        font-size: 16px;
    }    
}

/* Larger screens responsive adjustment (min-width) */