body {
    
    font-family: Outfit, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(212, 45%, 89%)
}

/*  Card Style */
.card {
    margin-top: 100px;
    width: 100%;
    max-width: 400px;
    max-height: 600px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
    box-shadow: 0px 10px 20px hsl(0, 0%, 0%, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}

/* Style the QR code container */
.qr-code-container {
    padding: 20px; /* Equal padding on all sides */
    background-color: hsl(0, 0%, 100%); /* Match the card's background color */
    border-radius: 10px; /* Add rounded corners to match the card */
    display: flex; /* Center the image inside the container */
    justify-content: center;
    align-items: center;
}

/* Style the QR code image */
.qr-code {
    height: auto;
    width: 100%; /* Adjust width for responsiveness */
    border-radius: 10px; /* Add rounded corners */
    display: block; /* Ensure the image is treated as a block element */
}

.text-container {
    padding: 0 20px 20px; /* Equal padding on all sides */
}

p{
    font-size: 15px;
    margin: 20px;
}

/* Attribution styling */
.attribution {
    font-size: 0.8rem;
    text-align: center;
    padding: 10px;
    padding-bottom: 40px;
  }

