/* Basic body styles to center content on the page*/
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Styles for the container includes a Qr code and text */
.container {
    max-width: 320px;
    width: 100%;
    text-align: center;
    border: 2px solid  #F2F2F2;

    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Styles for the Qr code image */
.qr-code {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
/* Header and paragraph styles */
h1 {
    font-size: 22px;
    color: #333333;
    margin-top: 24px;
    margin-bottom: 16px;
}
p {
    font-size: 15px;
    color: #666666;
    margin-top: 0;
    margin-bottom: 24px;
}
/* Media queries for responsive design on devices smaller than 375px */
@media (max-width: 375px) {
    .container {
        padding: 16px;
    }
    h1 {
        font-size: 18px;
        margin-top: 14px;
        margin-bottom: 10px;
    }
    p {
        font-size: 13px;
        margin-bottom: 14px;
    }
}